main(){ int i=3;int j;j = sizeof(++i+ ++i);//sizeof() is a functionprintf("i=%d j=%d", i ,j);}结果i=3,j=4;