#include <stdio.h> void main () { int i=3; printf("%d,%d",i,i++) getch(); }这个是在WINTC里编译的,结果是3,3我弄不明白,我认为是4,3.不是I用过后要自加1么?