vote up -1 vote down star
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 ?)

}

flag
2  
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 at 9:41
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 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 at 18:24
Explain these undefined behaviors? Explain what about them? How they behave is undefined. – jmillikan Jul 10 at 15:44

3 Answers

vote up 13 vote down check

Sigh. 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 (wiki) text-book example of undefined behavior (see Wikipedia's entry on sequence points).

link|flag
+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 at 9:31
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 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 at 10:21
@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 at 10:57
vote up 6 vote down

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|flag
vote up 1 vote down

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|flag

Your Answer

Get an OpenID
or

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