本文共 167 字,大约阅读时间需要 1 分钟。
#include <stdio.h>
int main()
{
int i=3;
int j=(++i)+(++i)+(++i);
printf("%d",j);
getchar();
}
在gcc编辑器是16
在mac下为15
面试中16才是对的
转载于:https://blog.51cto.com/2853725/1551879