问题详情
设变量均已正确定义并赋值,以下与其他三组输出结果不同的一组语句是
A)x++;printf(”%d ”,x);
B)n=++x;printf(”%d ”,n);
C)++x;printf(”%d ”,x);
D)n=x==;printf(”%d\n”,n);