...
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]\]). |
...
...
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]\]). |
...