回複:能解釋嗎?

來源: 2004-06-30 19:47:15 [舊帖] [給我悄悄話] 本文已被閱讀:

all c function is pass by value, the parameter evaluation order is not determined in standard except for a few operators. So how the compiler evaluate the parameter's value in which order is compiler-specific, which is also subject to optimization phase.

During programming, this side effect should be avoid.