Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
int main(int argc, char ** argv)
{

   int i = 0;
   i = i++ + ++i;
   printf("%d\n", i); // 3

   i = 1;
   i = (i++);
   printf("%d\n", i); // 2 Should be 1, no ?

   volatile int u = 0;
   u = u++ + ++u;
   printf("%d\n", u); // 1

   u = 1;
   u = (u++);
   printf("%d\n", u); // 2 Should also be one, no ?

   register int v = 0;
   v = v++ + ++v;
   printf("%d\n", v); // 3 (Should be the same as u ?)
}
share|improve this question
6  
Homework? Not trying to be a pain, but you should never write code with expressions like these. They are usually given as academic examples, sometimes showing that different compilers yield different output. – Jarrett Meyer Jun 4 '09 at 10:30
2  
@Jarett, nope, just needed some pointers to "sequence points". While working I found a piece of code with i = i++, I thougth "This isn't modifying the value of i". I tested and I wondered why. Since, i've removed this statment and replaced it by i++; – PiX Jun 4 '09 at 18:24
10  
Explain these undefined behaviors? Explain what about them? How they behave is undefined. – Jesse Millikan Jul 10 '09 at 15:44
54  
I think it's interesting that everyone ALWAYS assumes that questions like this are asked because the asker wants to USE the construct in question. My first assumption was that PiX knows that these are bad, but is curious why the behave they way the do on whataver compiler s/he was using... And yeah, what unWind said... it's undefined, it could do anything... including JCF (Jump and Catch Fire) – Brian Postow May 24 '10 at 13:41
I'm curious: Why don't compilers seem to warn on constructs such as "u = u++ + ++u;" if the result is undefined? – Learn OpenGL ES Sep 20 '12 at 16:23
show 2 more comments

9 Answers

up vote 117 down vote accepted

Why are these "issues"? The language clearly says that certain things lead to undefined behavior. There is no problem, there is no "should" involved. If the undefined behavior changes when one of the involved variables is declared volatile, that doesn't prove or change anything. It is undefined; you cannot reason about the behavior.

Your most interesting-loooking example, the one with

u = (u++);

is a text-book example of undefined behavior (see Wikipedia's entry on sequence points).

share|improve this answer
4  
+max_int. Use statements which the language standard actually tells you what they will do. Do not use undefined behaviour and then wonder what's going on. – Daniel Daranas Jun 4 '09 at 9:31
6  
I knew it was undefined, (The idea of seing this code in production frighten me :)) but I tried to understand what was the reason for these results. Especially why u = u++ incremented u. In java for example: u = u++ returns 0 as (my brain) expected :) Thanks for the sequence points links BTW. – PiX Jun 4 '09 at 9:42
Obviously because of the brackets around the u++ the compiler has decided to incerement u and then return it. As it is undefined behaviuor in C this is ligitimate. A different compiler or even a different machine and the same one may give a different answer. I do not know java, but perhaps the behaviour is clearly defined. – ChrisBD Jun 4 '09 at 10:21
3  
@PiX: Things are undefined for a number of possible reasons. These include: there is no clear "right result", different machine architectures would strongly favour different results, existing practice is not consistent, or beyond the scope of the standard (e.g. what filenames are valid). – Richard Jun 4 '09 at 10:57
@PiX Java goes out of its way to have defined behaviors for many things that are undefined in C. – Laurence Gonsalves Jul 30 '12 at 16:19
show 2 more comments

Read this Question from the C FAQ.

Q: How can I understand complex expressions like the ones in this section, and avoid writing undefined ones? What's a "sequence point"?

A: A sequence point is a point in time at which the dust has settled and all side effects which have been seen so far are guaranteed to be complete. The sequence points listed in the C standard are:

  1. at the end of the evaluation of a full expression (a full expression is an expression statement, or any other expression which is not a subexpression within any larger expression);
  2. at the ||, &&, ?:, and comma operators; and
  3. at a function call (after the evaluation of all the arguments, and just before the actual call).

The Standard states that

Between the previous and next sequence point an 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.

These two rather opaque sentences say several things. First, they talk about operations bounded by the "previous and next sequence points"; such operations usually correspond to full expressions. (In an expression statement, the "next sequence point" is usually at the terminating semicolon, and the "previous sequence point" is at the end of the previous statement. An expression may also contain intermediate sequence points, as listed above.)

The first sentence rules out both the examples

i++ * i++

and

i = i++

from questions 3.2 and 3.3--in both cases, i has its value modified twice within the expression, i.e. between sequence points. (If we were to write a similar expression which did have an internal sequence point, such as

i++ && i++

it would be well-defined, if questionably useful.)

The second sentence can be quite difficult to understand. It turns out that it disallows code like

a[i] = i++

from question 3.1. (Actually, the other expressions we've been discussing are in violation of the second sentence, as well.) To see why, let's first look more carefully at what the Standard is trying to allow and disallow.

Clearly, expressions like

a = b

and

c = d + e

which read some values and use them to write others, are well-defined and legal. Clearly, [footnote] expressions like

i = i++

which modify the same value twice are abominations which needn't be allowed (or in any case, needn't be well-defined, i.e. we don't have to figure out a way to say what they do, and compilers don't have to support them). Expressions like these are disallowed by the first sentence.

It's also clear [footnote] that we'd like to disallow expressions like

a[i] = i++

which modify i and use it along the way, but not disallow expressions like

i = i + 1

which use and modify i but only modify it later when it's reasonably easy to ensure that the final store of the final value (into i, in this case) doesn't interfere with the earlier accesses.

And that's what the second sentence says: if an object is written to within a full expression, any and all accesses to it within the same expression must be directly involved in the computation of the value to be written. This rule effectively constrains legal expressions to those in which the accesses demonstrably precede the modification. For example, the old standby i = i + 1 is allowed, because the access of i is used to determine i's final value. The example

a[i] = i++

is disallowed because one of the accesses of i (the one in a[i]) has nothing to do with the value which ends up being stored in i (which happens over in i++), and so there's no good way to define--either for our understanding or the compiler's--whether the access should take place before or after the incremented value is stored. Since there's no good way to define it, the Standard declares that it is undefined, and that portable programs simply must not use such constructs.

share|improve this answer
16  
Much better answer than the accepted one, IMHO. – jrok Jul 12 '12 at 16:33
1  
This was really insightful! thank you – Leaurus Oct 19 '12 at 11:59

Just compile and disassemble your line of code, if you are so inclined to know how exactly it is you get what you are getting.

This is what I get on my machine:

$ cat evil.c
void evil(){
  int i = 0;
  i+= i++ + ++i;
}
$ gcc evil.c -c -o evil.bin
$ gdb evil.bin
(gdb) disassemble evil
Dump of assembler code for function evil:
   0x00000000 <+0>:   push   %ebp
   0x00000001 <+1>:   mov    %esp,%ebp
   0x00000003 <+3>:   sub    $0x10,%esp
   0x00000006 <+6>:   movl   $0x0,-0x4(%ebp)
   0x0000000d <+13>:  addl   $0x1,-0x4(%ebp)
   0x00000011 <+17>:  mov    -0x4(%ebp),%eax
   0x00000014 <+20>:  add    %eax,%eax
   0x00000016 <+22>:  add    %eax,-0x4(%ebp)
   0x00000019 <+25>:  addl   $0x1,-0x4(%ebp)
   0x0000001d <+29>:  leave  
   0x0000001e <+30>:  ret    
End of assembler dump.
share|improve this answer
+1 for illustrating the concept of actually understanding the machine underlying the construct. – JUST MY correct OPINION Sep 25 '10 at 4:37
how do i get the machine code? I use Dev C++, and i played around with 'Code Generation' option in compiler settings, but go no extra file output or any console output – ronnieaka Sep 24 '12 at 14:11
@ronnieaka gcc evil.c -c -o evil.bin and gdb evil.bindisassemble evil, or whatever the Windows equivalents of those are :) – badp Sep 24 '12 at 18:20
thanks. i will start searching on that – ronnieaka Sep 25 '12 at 4:56

I think the relevant parts of the C99 standard are 6.5 Expressions, §2

Between the previous and next sequence point an object shall have its stored value modified at most once by the evaluation of an expression. Furthermore, the prior value shall be read only to determine the value to be stored.

and 6.5.16 Assignment operators, §4:

The order of evaluation of the operands is unspecified. If an attempt is made to modify the result of an assignment operator or to access it after the next sequence point, the behavior is undefined.

share|improve this answer
Would the above imply that 'i=i=5;" would be Undefined Behavior? – supercat Nov 20 '11 at 21:41

This is related to something called sequence points.

You can read more about it here basically what you have written is not allowed and has undefined behavior.

share|improve this answer

While it is unlikely that any compilers and processors would actually do so, it would be legal, under the C standard, for the compiler to implement "i++" with the sequence:

In a single operation, read `i` and lock it to prevent access until further notice
Compute (1+read_value)
In a single operation, unlock `i` and store the computed value

While I don't think any processors support the hardware to allow such a thing to be done efficiently, one can easily imagine situations where such behavior would make multi-threaded code easier (e.g. it would guarantee that if two threads try to perform the above sequence simultaneously, i would get incremented by two) and it's not totally inconceivable that some future processor might provide a feature something like that.

If the compiler were to write i++ as indicated above (legal under the standard) and were to intersperse the above instructions throughout the evaluation of the overall expression (also legal), and if it didn't happen to notice that one of the other instructions happened to access i, it would be possible (and legal) for the compiler to generate a sequence of instructions that would deadlock. To be sure, a compiler would almost certainly detect the problem in the case where the same variable i is used in both places, but if a routine accepts references to two variables i and j, and uses i and j in the above expression (rather than using i twice) the compiler would not be required to recognize or avoid the deadlock that would occur if the same variable were passed for both i and j.

share|improve this answer

Think in terms of assembly level programming. Try to understand how one line will be converted to assembly level code. All pre increments are done before instruction, and post after. But in case of multiple operations in 1 line like x=x++ + ++x + ++x, different compilers might give different asnwers.

For example, i = i++ is decoded into:

i=i;
i=i+1;

starting with i=1, the result of these 2 operations is 2.

Next, v=v++ + ++v; This becomes:

v=v+1;
v=v+v;
v=v+1;

So, starting with v=0, it becomes v=3.

share|improve this answer
1  
No, no, no! There is no explanation for the result. It is explicitly undefined, and anything can happen. – Bo Persson Apr 17 at 20:43

i = i++ + ++i , i = i++, for example take i=1,

i=i++ + ++i  

**total i=3.**

when i assigned first, i will be 1 i.e for i++,(assign first and then increment) & for second operation i will increment and assign.so now i 2 which is incremented to 3 i=i++ i=3

share|improve this answer
Please read the answers above. In C or C++, i = i++ + ++i is undefined behavior, you have no idea what will happen to i or the rest of your program if your code has that statement in it. – Mat Mar 20 at 20:17
I dont think so. Different compilers might parse it in different ways, but for a given compiler answer will be same. – shiladitya Apr 17 at 4:23
@shiladitya - No! The C standards committee was aware of hardware where simultaneously reading and writing to the same address would hang the data bus. So for some compilers there is literally no result at all. – Bo Persson Apr 17 at 20:51

I didn't check the standard but for me when you parse

i = i++ + ++i;

All that matters is the operator precedence. So the statement is equivalent (and is parsed as) to

// The post-incrementation happens after the statement, hence the second statement.
i = i + (i = i + 1); i = i + 1;

//which is equivalent to:
i = i + 1; //from ++i
i = i + i;
i = i + 1; //from i++  

Same goes for:

i = 1;
i = (i++);

It is equivalent to:

i = 1;
i = (i = i + 1);

//which is equivalent to:
i = 1;
i = i + 1; // pre-increment
i = i; //Assignation

But that doesn't apply to the volatile keyword... I think (and I have absolutely no reference on that, it's just speculation) you have these result because of operation re-ordering made by the compiler. Because of the nature of volatile variables, the compiler is allowed to do these three separated operation in any order:

i = i + 1; //from ++i
i = i + i;
i = i + 1; //from i++  

You should test this on different compiler to see what you get. And I remember: this part of my answer is just speculation.

share|improve this answer
It is less trivial to try to read i = ++i + i++ + ++i + i++; xD but it's equivalent to ++i; i = i + i; ++i; i = i + i; ++i; ++i; That is, the second ++i has splitted the statement because the operator + is left associative so the operation are mare from left to right. – Sharpie Apr 23 at 3:05
You should please, please check the standard before answering. This is just totally incorrect! – Bo Persson Apr 23 at 21:19
I should have slept too before posting an answer, sorry xD. But hey, another way of viewing things is never a bad thing. Also the OP @PiX said "I knew it was undefined, (The idea of seing this code in production frighten me :)) but I tried to understand what was the reason for these results." and I think that my answer could help with that. – Sharpie Apr 23 at 22:43
And you didn't notice the other answer (with 100 upvotes) which says that there is no reason at all to expect any result? Or that the question was asked 4 years ago? – Bo Persson Apr 25 at 21:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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