#include
这个是想让体会下先运算后取值和先取值后运算。
参考代码你看看
#include <stdio.h> int main() { int x = 0; printf("x=%d\n",x++); printf("x=%d\n",++x); return 0; }
、soga