单项选择题

设变量均已正确定义并且赋值,以下与其他三组输出结果不同的一组语句是()

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)