标签: c operator-keyword
#include<stdio.h> int main(){ int i=5,j; printf("%d %d", ++i, ++i); return 0; }
该代码应打印6 7。而是打印7 7。这是怎么回事?
6 7
7 7