Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
int a = 81 / CUBE(i++);

expands to:

Code Block

int a = 81 / (i++ * i++ * i++); 

Wiki Markup
Whichwhich is undefined (see \[[EXP30|EXP30-C. Do not depend on order of evaluation between sequence points]\]).

...