Possible Duplicates:
Undefined, unspecified and implementation-defined behavior
Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc...)
What's the correct result the following code snippet should display? and why the result is different on different compilers?
int i = 10;
i = ++i + (i++) + (++i) + i;
cout << i;
The Dev C++ is evaluating it as 47, and Borland Turbo C++ as 49, can anyone shed light on how those particular compilers might be interpreting the above assignment? Ofcourse only if discussing Undefine Behaviour isn't a taboo here.
Quit playing with fire, you KNOW it's undefined behaviour. There's no need to pester poor Stackoverflow users, just look it up if you aren't sure what exactly is wrong about it. Also, please allow me to show you the warnings I made for your. Sincerely, your compiler.. – delnan Oct 21 '11 at 19:06