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.

link|improve this question

50% accept rate
1  
3  
I don't know what it will display, nobody can say that (at least not without lots of details). But I'd say it totally should output 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
1  
This question didn't need to be downvoted in my opinion. It's a legitimate question. – John Dibling Oct 21 '11 at 19:08
1  
1  
@Als: It still shouldn't be closed. The OP didn't ask "What is undefined behavior." – John Dibling Oct 21 '11 at 19:20
show 12 more comments
feedback

closed as exact duplicate by sixlettervariables, Lou Franco, Als, greyfade, Fred Larson Oct 21 '11 at 19:15

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

Maybe you are wanting to use (i+1) and (i-1) instead of (i++). i++ will change the value of i, which doesn't seem to be desired in this situation.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.