one more comment

來源: 2004-06-29 20:53:17 [舊帖] [給我悄悄話] 本文已被閱讀:

BTW, this is a good question. To really understand the results, one needs to know how compilers work AND some exposure to assembly language.

Now what if the first printf statement is:
print("a=%d a++=%d ++a=%d\n", a, a++, ++a);
what result will you see?