vote up 1 vote down star

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

I m not able to understand the output of this program.(on gcc compiler)

main()
{
  int a=10;
  printf("%d %d %d\n",++a, a++,a);
}

Output: 12 10 12

Also please explain the order of evaluation of arguments of printf function.

Thanks

flag

75% accept rate
Hint: Sequence points – unknown (google) Aug 13 at 6:37
9  
when you post homework, which is ok, at least show that you have made your own attempt to solve the riddle before posting it to SO. just share your thoughts so far. everything else is just too blatantly lazy. – tharkun Aug 13 at 6:38
Then read more... and proper documents: The order of evaluation of the function designator, the actual arguments, and subexpressions within the actual arguments is unspecified, but there is a sequence point before the actual call. – unknown (google) Aug 13 at 6:43
Evaluation is not guaranteed to be done right to left in printf. – Pavel Minaev Aug 13 at 6:44
1  
Duplicate of stackoverflow.com/questions/376278/… – Drew Hoskins Aug 13 at 6:45

closed as exact duplicate by unknown (google), Naveen, Kirill V. Lyadvinsky, qrdl, Chris Bunch Aug 13 at 20:30

4 Answers

vote up 7 vote down

AFAIK there is no defined order of evaluation for the arguments of a function call, and the results might vary for each compiler. In this instance I can guess the middle argument was first evaluated, following by the first, and the third.

link|flag
2  
Yes, it's a common mistake to rely on any given order of evaluation. It works today with this compiler, then it stops working on another compiler. – sharptooth Aug 13 at 6:40
But I have read that evaluation is done right to left in printf. Then why this problem. – nowonder Aug 13 at 6:41
1  
The order is unspecified, but modifying the same lvalue twice in the same expression (without a sequence point in between) is actually undefined behavior, and can thus do anything at all - including crash. – Pavel Minaev Aug 13 at 6:42
6  
Comma separating arguments in a function call is not a comma operator, it's just a part of syntax: foo(a, b) - this is not a comma operator; x = a, b - this is a comma operator. – Pavel Minaev Aug 13 at 6:45
1  
printf has no control over in which order its parameters are evaluated, that's up to the compiler. printf is just a random function. – Drew Hoskins Aug 13 at 6:46
show 6 more comments
vote up 1 vote down

As haggai_e hinted, the parameters are evalueted in this order: middle, left, right. To fully understand why these particular numbers are showing up, you have to understand how the increment works.

a++ means "do something with a, and then increment it afterwards". ++a means "increment a first, then do something with the new value".

In your particular Example, printf evaluates a++ first, reads 10 and prints it and only then increments it to 11. printf then evaluates ++a, increments it first, reads 12 and prints it out. The last variable printf evaluates is read as it is (12) and is printed without any change.

Although they are evaluated in a random order, they are displayed in the order you mentioned them. That's why you get 12 10 12 and not 10 12 12.

link|flag
Yes... and the same way you can explain other possible outputs: 11 11 12 12 11 12 12 10 10 and so on... But what's the point? It's sufficient to know the rules for the evaluation order (not guaranteed) and the working of increment. – unknown (google) Aug 13 at 7:05
I was explaining the output since that was the askers problem. Every combustion Engine works the same but you still need one type of Engine to better understand the inner workings of every combustion Engine. Now substitute Engine by Example and combustion by printf and there you have my point. – Mike Aug 13 at 7:24
Except that you're assuming too much regularity. The use of a++ and a++ without an intervening sequence point is undefined. Behavior like you describe is unspecified. There is no way you can explain what happens in a standard-conforming way, only what one particular implementation happened to do. – David Thornley Aug 13 at 20:37
vote up 3 vote down

The compiler will evaluate printf's arguments in whatever order it happens to feel like at the time. It could be an optimization thing, but there's no guarantee: the order they are evaluated isn't specified by the standard, nor is it implementation defined. There's no way of knowing.

But what is specified by the standard, is that modifying the same variable twice in one operation is undefined behavior; ISO C++03, 5[expr]/4:

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.

printf("%d %d %d\n",++a, a++,a); could do a number of things; work how you expected it, work in ways you could never understand, crash, blow up, or if it's feeling particularly witty, send nasty emails to your mother (although this result is usually seen in buffer overruns and other such tragedies).

You shouldn't write code like this. For your family's sake.

link|flag
1  
Actually, order is unspecified, not implementation defined. The difference is that the compiler documentation must define what happens in implementation-defined cases, but not in unspecified cases. – Steve Jessop Aug 13 at 11:12
Ah, alright--will update the answer then – Carson Myers Aug 13 at 20:08
vote up -3 vote down

Side effects

link|flag

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