哎,奇怪了 我在VC6.0下的输出结果是: 2,2 4 郁闷!!!! #include <stdio.h>
void main() { int i=2; printf("%d,%d\n",i++,i++); printf("%d\n",i);
} //输出是从左往右 但计算是从右往左了