A. x++; printf("%d\n", x); B. n=++x; printf("%d\n", n); C. ++x; printf(“%d\n”,x); D. n=x++; printf(“%d\n”,n);
A. a+b=0 B. a+b=30 C. 30 D. 出错