#include <stdio.h>
#include <stdlib.h>
int main()
{
int i = 6;
printf("%d,%d,%d/r/n", i, i++, ++i);
system("pause");
return 0;
}
如果按照自己的想法,输出是5, 4, 4,可是系统输出的是4, 4, 4,这种自增格式变量用作函数参数很容易造成与自己想要的结果不同,所以应该尽可能地少用这种方法.
但是为什么会输出4, 4, 4呢?其真正原因是什么呢?我还不得其解,请大家说说自己的想法!