Can someone explain to me why this code prints 14? I was just asked by another student and couldn't figure it out.
int i = 5;
i = ++i + ++i;
cout<<i;
|
Can someone explain to me why this code prints 14? I was just asked by another student and couldn't figure it out.
|
|||||||||||||||||
|
|
The order of side effects is undefined in C++. Additionally, modifying a variable twice in a single expression has no defined behavior (See the C++ standard, 5.4, page 87). Solution: Don't use side effects in complex expression, don't use more than one in simple ones. And it does not hurt to enable all the warnings the compiler can give you: Adding
Obviously, the code compiles to:
|
|||||||||||||
|
|
That's undefined behaviour, the result will vary depending on the compiler you use. See, for example, C++ FAQ Lite. |
|||
|
|
|
In some of the answers/comments there has been a discussion about the meaning of 'undefined behavior' and whether that makes the program invalid. So I'm posting this rather long answer detailing exactly what the standard says with some notes. I hope it's not too boring... The quoted bits of the standard come from the current C++ standard (ISO/IEC 14882:2003). There's similar wording in the C standard. According to the C++ standard, modifying a value more than once within a set of sequence points results in undefined behavior (section 5 Paragraph 4):
Note that the second example, " Here's what the C++ standard says 'undefined behavior' means:
In other words, the compiler is free to do whatever it wants, including
The second item covers language extensions which most compilers have, but of course are not defined in the standard. So I guess that strictly speaking something that exhibits undefined behavior is not 'illegal', but in my experience whenever there's been something in a C/C++ program that exhibits 'undefined behavior' (unless it's an extension) - it's a bug. I think that calling such a construct illegal is not confusing, misleading, or misguided. Also, I think trying to explain what the compiler is doing to reach the value 14 is not particularly helpful, as that misses the point. The compiler could be doing almost anything; in fact, it's likely that the compiler may reach a different result when it's run using differing optimization options (or may produce code that crashes - who knows?). For those who want some additional references or an appeal to authority, here are some pointers: Steve Summit's (maintainer of the comp.lang.c Frequently Asked Questions) long, long answer on this topic from 1995: Here's what Bjarne Stroustrup has to say on the matter: Footnote: the C++ standard uses the word 'illegal' exactly once - when describing a difference between C++ and Standard C regarding the use of |
|||||||||||||
|
|
Simple... you compiler is evaluating BOTH increments before performing the sum, without caching the intermediate results. This means that when you add i twice, it now has the value of 7. If you do
you'll see 13 as expected. |
|||
|
On your particular compiler, it's choosing to do both of the ++ operations first, then the addition. It's interpreting the code as:
That's perfectly valid. |
|||||||||
|
|
A better question would be, is it always going to be
In all likelihood it will probably be |
|||
|
|
|
I think that when looking at the problem from the sight of the syntax tree, the answer to the problem becomes clearer: i |
|||
|
|
|
Because the prefix increment has precedence:
|
|||||||||||
|
|
|||
|
|