C++ Mystery - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T11:41:25Z http://stackoverflow.com/feeds/question/340282 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/340282/c-mystery 10 C++ Mystery Alexander Stolz 2008-12-04T11:35:55Z 2008-12-05T13:39:34Z <p>Can someone explain to me why this code prints 14? I was just asked by another student and couldn't figure it out.</p> <pre><code>int i = 5; i = ++i + ++i; cout&lt;&lt;i; </code></pre> http://stackoverflow.com/questions/340282/c-mystery/340299#340299 -2 Answer by Gonzalo Quero for C++ Mystery Gonzalo Quero 2008-12-04T11:43:24Z 2008-12-04T11:43:24Z <p>Because the prefix increment has precedence:</p> <pre><code>int i = 5; i = i+1; // First ++i, i is now 6 i = i+1; // Second ++i, i is now 7 i = i + i // i = 7 + 7 cout &lt;&lt; i // i = 14 </code></pre> http://stackoverflow.com/questions/340282/c-mystery/340302#340302 -4 Answer by Michael Madsen for C++ Mystery Michael Madsen 2008-12-04T11:43:33Z 2008-12-04T11:43:33Z <p>It's due to operator precedence. ++x has higher precedence than (and it therefore evaluated before) x + x, so it'll do the final addition as the last thing - after the prefix increments have been applied.</p> <p>You will need to split hte calculation over several commands if the result should be 13.</p> http://stackoverflow.com/questions/340282/c-mystery/340305#340305 38 Answer by phihag for C++ Mystery phihag 2008-12-04T11:44:17Z 2008-12-04T18:18:32Z <p>The order of side effects is undefined in C++. Additionally, modifying a variable twice in a single expression has no defined behavior (See the <a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2005/n1905.pdf" rel="nofollow">C++ standard</a>, 5.4, page 87).</p> <p>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 <code>-Wall</code>(gcc) or <code>/Wall /W4</code>(Visual C++) to the command line yields a fitting warning:</p> <pre><code>test-so-side-effects.c: In function 'main': test-so-side-effects.c:5: warning: operation on 'i' may be undefined test-so-side-effects.c:5: warning: operation on 'i' may be undefined </code></pre> <p>Obviously, the code compiles to:</p> <pre><code>i = i + 1; i = i + 1; i = i + i; </code></pre> http://stackoverflow.com/questions/340282/c-mystery/340306#340306 0 Answer by Mr Fooz for C++ Mystery Mr Fooz 2008-12-04T11:44:52Z 2008-12-04T11:44:52Z <p>On your particular compiler, it's choosing to do both of the ++ operations first, then the addition. It's interpreting the code as:</p> <pre><code>int i = 5; ++i; ++i; i = i + i; cout &lt;&lt; i; </code></pre> <p>That's perfectly valid.</p> http://stackoverflow.com/questions/340282/c-mystery/340315#340315 2 Answer by bgoncalves for C++ Mystery bgoncalves 2008-12-04T11:47:15Z 2008-12-04T11:47:15Z <p>Simple... you compiler is evaluating <strong>BOTH</strong> 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.</p> <p>If you do </p> <pre><code>int j=++i; int k=++i; i = j+k; </code></pre> <p>you'll see 13 as expected. </p> http://stackoverflow.com/questions/340282/c-mystery/340316#340316 13 Answer by Claymore for C++ Mystery Claymore 2008-12-04T11:47:18Z 2008-12-04T11:47:18Z <p>That's undefined behaviour, the result will vary depending on the compiler you use. See, for example, <a href="http://www.parashift.com/c++-faq-lite/misc-technical-issues.html#faq-39.15" rel="nofollow">C++ FAQ Lite</a>.</p> http://stackoverflow.com/questions/340282/c-mystery/340464#340464 -1 Answer by plan9assembler for C++ Mystery plan9assembler 2008-12-04T12:43:24Z 2008-12-04T12:43:24Z <pre><code> i = i++ + i; //11 i = i++ + i++; //12 i = i++ + ++i; //13 i = ++i + i++; //13 i = ++i + ++i; //14 </code></pre> http://stackoverflow.com/questions/340282/c-mystery/341246#341246 11 Answer by Michael Burr for C++ Mystery Michael Burr 2008-12-04T16:40:09Z 2008-12-04T22:02:07Z <p>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...</p> <p>The quoted bits of the standard come from the current C++ standard (ISO/IEC 14882:2003). There's similar wording in the C standard.</p> <p>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):</p> <blockquote> <p>Except where noted, the order of evaluation of operands of individual operators and subexpressions of individual expressions, and the order in which side effects take place, is unspecified.53) Between the previous and next sequence point a scalar object shall have its stored value modified at most once by the evaluation of an expression. Furthermore, the prior value shall be accessed only to determine the value to be stored. The requirements of this paragraph shall be met for each allowable ordering of the subexpressions of a full expression; otherwise the behavior is undefined. [Example:</p> <pre><code>i = v[i++]; // the behavior is unspecified i = 7, i++, i++; // i becomes 9 i = ++i + 1; // the behavior is unspecified i = i + 1; // the value of i is incremented </code></pre> <p>—end example]</p> </blockquote> <p>Note that the second example, "<code>i = 7, i++, i++;</code>" is defined since the comma operator is a sequence point.</p> <p>Here's what the C++ standard says 'undefined behavior' means:</p> <blockquote> <p>1.3.12 undefined behavior [defns.undefined]</p> <p>behavior, such as might arise upon use of an erroneous program construct or erroneous data, for which this International Standard imposes no requirements. Undefined behavior may also be expected when this International Standard omits the description of any explicit definition of behavior. [Note: permissible undefined behavior ranges from ignoring the situation completely with unpredictable results, to behaving during translation or program execution in a documented manner characteristic of the environment (with or without the issuance of a diagnostic message), to terminating a translation or execution (with the issuance of a diagnostic message). Many erroneous program constructs do not engender undefined behavior; they are required to be diagnosed. ]</p> </blockquote> <p>In other words, the compiler is free to do whatever it wants, including</p> <ol> <li>spitting out an error message, </li> <li>doing something implementation defined &amp; documented,</li> <li>having completely unpredictable results</li> </ol> <p>The second item covers language extensions which most compilers have, but of course are not defined in the standard.</p> <p>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.</p> <p>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?).</p> <p>For those who want some additional references or an appeal to authority, here are some pointers:</p> <p>Steve Summit's (maintainer of the comp.lang.c Frequently Asked Questions) long, long answer on this topic from 1995:</p> <ul> <li><a href="http://www.eskimo.com/~scs/readings/undef.950321.html" rel="nofollow">http://www.eskimo.com/~scs/readings/undef.950321.html</a></li> </ul> <p>Here's what Bjarne Stroustrup has to say on the matter:</p> <ul> <li><a href="http://www.research.att.com/~bs/bs_faq2.html#evaluation-order" rel="nofollow">http://www.research.att.com/~bs/bs_faq2.html#evaluation-order</a></li> </ul> <p><hr /></p> <p><em>Footnote</em>: the C++ standard uses the word 'illegal' exactly once - when describing a difference between C++ and Standard C regarding the use of <code>static</code> or <code>extern</code> with type declarations.</p> http://stackoverflow.com/questions/340282/c-mystery/341321#341321 -3 Answer by Null303 for C++ Mystery Null303 2008-12-04T16:59:03Z 2008-12-04T17:37:43Z <p>This is related to why <code>++++i</code> would be valid.</p> <p>++i is returning a reference, not a value.</p> <p>For the lawyers:</p> <blockquote> <p>5.3.2 Increment and decrement [expr.pre.incr]</p> <p>1 The operand of prefix ++ is modified by adding 1, or set to true if it is bool (this use is deprecated). The operand shall be a modifiable lvalue. The type of the operand shall be an arithmetic type or a pointer to a completely-defined object type. <strong>The result is the updated operand; it is an lvalue</strong>, and it is a bit-field if the operand is a bit-field. If x is not of type bool, the expression ++x is equivalent to x+=1 [ Note: see the discussions of addition (5.7) and assignment operators (5.17) for information on conversions. —end note ]</p> </blockquote> http://stackoverflow.com/questions/340282/c-mystery/341442#341442 0 Answer by Brad Gilbert for C++ Mystery Brad Gilbert 2008-12-04T17:31:18Z 2008-12-04T17:31:18Z <p>A better question would be, is it always going to be <code>14</code>?</p> <pre><code>int i = 5; i = ++i + ++i; cout&lt;&lt;i; i = ++i + ++i ; i = ++(5) + ++(5) ; i = 6 + 6 ; i = 12; i = ++i + ++i ; i = ++i + ++(5) ; i = ++i + (6) ; i = ++(6) + 6 ; i = (7) + 6 ; i = 13; i = ++i + ++i ; i = ++i + ++(5) ; i = ++(6) + (6) ; i = (7) + (7) ; i = 14; </code></pre> <p>In all likelihood it will probably be <code>14</code>, because it makes <em>slightly</em> more sense.</p> http://stackoverflow.com/questions/340282/c-mystery/343859#343859 0 Answer by karx11erx for C++ Mystery karx11erx 2008-12-05T13:39:34Z 2008-12-05T13:39:34Z <p>I think that when looking at the problem from the sight of the syntax tree, the answer to the problem becomes clearer:</p> <p>i<br> |<br> =<br> |<br> +<br> |<br> unary expression - unary expression<br> <br> unary expression: unary operator expression<br> <br> In our case expression boils down to the variable i.<br> <br> Now what happens is that both unary expression modify the same operand, so the code does two times ++i when evaluating the unary expressions before adding the results of both unary expressions.<br> <br> So what the code does is indeed<br> <br> ++i;<br> ++i;<br> i = i + i;<br> <br> For i = 5 that means<br> <br> i = i + 1; //i &lt;- 6<br> i = i + 1; //i &lt;- 7<br> i = i + i; //i &lt;- 14<br></p>