Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
コードは次のとおりです。
#include<stdio.h> int main() { int i=0; printf("%d %d %d", i, i++, ++i); return 0; }
コードへの出力は
2 1 2
ただし、コードが右から左に評価される場合は、
2 1 1
GCCがどのように評価しているか説明してください。
ありがとうございました。