Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…)

#include <stdio.h>

int main()
{ 
    int i=1;

    printf("%d %d %d\n",i,++i,i++);

    i=1;
    printf("%d %d %d\n",++i,i,i++);

    i=1;
    printf("%d %d %d\n",i++,++i,i);

    i=1;
    printf("%d %d %d\n",i++,i,++i);

    i=1;
    printf("%d %d %d\n",++i,i++,i);

    i=1;
    printf("%d \n",(++i)*(++i)*(++i));

    i=1;
    printf("%d %d %d\n",++i, ++i, ++i);

    return 0;
}

Output (GCC)

3 3 1 
3 3 1 
2 3 3 
2 3 3 
3 1 3 
36 
4 4 4 

Output(Visual Studio)

3 3 1
3 3 1
2 3 3
2 3 3
3 1 3
64
4 4 4

Can any one explain this?

share|improve this question
3  
I though that was undefined behavior? – ratchet freak Nov 21 '12 at 10:56
2  
This would be better on SO, where you'll find that what you're doing is undefined behavior because you're modifying the same variable multiple times within a sequence point. – Blrfl Nov 21 '12 at 10:57
@Blrfl Even when I changes the variable name for each printf, i get the same results. – 0x07FC Nov 21 '12 at 11:07
@MadKeithV Surely it is the same kind of UB, but I would say, stackoverflow.com/questions/376278 is more of a exact duplicate – stefan Nov 21 '12 at 11:29
2  
You should get the same results. You can't modify a variable multiple times in the same function call and expect consistent behavior. Section 6.5 of the standard says: "between the previous and next sequence point an object shall have its stored value modified at most once by the evaluation of an expression." – Blrfl Nov 21 '12 at 12:06

migrated from programmers.stackexchange.com Nov 21 '12 at 11:13

marked as duplicate by MadKeithV, dasblinkenlight, Lucifer, kbok, Shahbaz Nov 21 '12 at 11:31

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 3 down vote accepted

The order of evaluation of expressions inside the same sequence point is undefined. When you do:

printf("%d %d %d\n",i,++i,i++);

the standard doesn't say anything about which argument is evaluated first.

The comp.lang.c FAQ has an entry for this.

Note that in contrast to the comma operator, the comma between function arguments does not introduce sequence points. For example, this is not undefined:

printf("%d", (i,++i));

Building your code under GCC (4.7.2), actually yields appropriate warnings:

warning: operation on 'i' may be undefined [-Wsequence-point]
share|improve this answer
2  
“order of evaluation of expressions inside the same sequence point is undefined” No, the order of evaluation is unspecified, meaning that it cannot be relied upon. However, the standard(s) also say that the same location cannot be modified and accessed between two sequence points, which the OP's statement is doing, and that is undefined behavior. C99 3.4.3, 3.4.4, 6.5:2 – Pascal Cuoq Nov 21 '12 at 13:05

What really confuses you?

int i=1;
printf("%d %d %d\n",i,++i,i++);

Here variables are read from the stack in the reverse order, so:

the last %d goes as 1 because you're using post increment operator and i value for now is 1. (but it already increased by 1 and equals 2)

the middle %d uses pre-increment operator so your i value got incremented by 1 and printed (equals 3).

the first %d just prints the value of i which in 3 for now

share|improve this answer
2  
So wrong, it's just UB. – DeadMG Nov 21 '12 at 11:36
Even though this is indeed what's happening, it is technically wrong. Any sane compiler would evaluate the expressions from right to left, but the standard strictly defines this case as undefined behavior. This means that the optimizer for example can opt-in and destroy all your logic, simply because there is no stopping it. I strongly suggest taking a look at the C standard (for example draft of C99). I too, once thought I know how C works. Later, turned out I just know how gcc without optimization on x86 architecture works. – Shahbaz Dec 6 '12 at 15:34

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