#include <stdio.h>

void main()
{
int a = 1, b = 1;
a+++b;
printf("a=%d,b=%d", a, b);
}

A.1,1 B.1,2 C.2,1 D.2,2
解析:
a+++b=a++ + b=(a++)+b