in reply to Re^3: Why is the execution order of subexpressions undefined? (victim)
in thread Why is the execution order of subexpressions undefined?

We are talking order. The order that the calculations get performed need not be as you specified (based solely on precedence and associativity). Even if + might be redefined by the programmer such that x+y != y+x, computing x+y does not require that x be computed before y.

- tye        

  • Comment on Re^4: Why is the execution order of subexpressions undefined? (victim)