在用VC++6.0的同学进来下
代码:# include <stdio.h>
int main(void)
{
int x = 7;
printf("%d %d %d\n",++x,--x,x++);
return 0;
}
为什么结果输出是: 7 6 7
2012-12-15 17:25
2012-12-15 21:04
2012-12-15 21:53
2012-12-15 22:12


2012-12-15 22:23
2012-12-15 22:34
2012-12-16 18:30
2012-12-16 18:34
2012-12-16 18:37
2012-12-17 12:54