|
>>yy偶不会
>> The master of LS said somehow, C didn't define the order of expression evaluation, of course, the result should be compiler related ...
> Yes, you are right.
Correction: The order of expression evaluation in the question is undefined.
The order of evaluation and the order of occurrence of side effects are determined by the order point. In the following cases, the order is defined:
function-call (),&&, ||,?:, and comma operators.
Other cases are undefined. |
|