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 ?)
}
link|improve this question
11  
In general I would not use such complex expressions where it's hard to predict what the result is, especially when other people have to understand your code. – sebastiangeiger Jun 4 '09 at 9:41
4  
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
@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
6  
Explain these undefined behaviors? Explain what about them? How they behave is undefined. – Jesse Millikan Jul 10 '09 at 15:44
22  
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
feedback

5 Answers

up vote 58 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).

link|improve this answer
2  
+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
3  
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
feedback

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.

link|improve this answer
feedback

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.

link|improve this answer
feedback

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.

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

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.
link|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
feedback

Your Answer

 
or
required, but never shown

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