回复:我用visual c++ 6.0: 对的.

来源: 2004-06-29 12:33:53 [旧帖] [给我悄悄话] 本文已被阅读:

only two answers for

printf("a++=%d +aa=%d", a++, ++a);

one is gcc one or standard c order one: 10 12
one is vcc one or pascall order one: 11 11

The 11 12 one is definitely wrong.