回复:能解释吗?

来源: 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.