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.
int x = 97; int y = sizeof(x++); printf("Value of x = %d", x);
输出:97 我期待 98 但答案是 97。
任何人都可以解释?