标签: c xcode visual-c++
我输入了以下代码。在Xcode中它打印18,在视觉c中打印21。我的老师坚持认为正确答案是21.该计算如何视觉化?
int x, i = 4; x = ++i + ++i + ++i printf("%d", x);