Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What should be the output of the following code and why? I am little bit confused.

int a =10;
printf("%d %d %d",a,a=a+10,a);
share|improve this question
1  
What did you get? – Pratik Deoghare Apr 29 '10 at 9:28
23  
Oh, no, not again! – anon Apr 29 '10 at 9:29
6  
Last I checked, the order in which function parameters are evaluated is undefined, so the output here is likewise undefined. – Max Shawabkeh Apr 29 '10 at 9:29
@Neil : rep farming FTW. :) – Stefano Borini Apr 29 '10 at 9:46
3  
I see Neil's doing his famous "Bowl of Petunias" impersonation again :-) – Skizz Apr 29 '10 at 13:53
show 1 more comment

7 Answers

The output is indeterminate, because a=a+10 is a side-effect, and the compiler is free to evaluate it before or after any of the other parameters.

EDIT: As David points out, the behaviour is actually undefined, which means all bets are off and you should never write such code. In practice, the compiler will almost always do something plausible and unpredictable, maybe even differing between debug and optimised builds. I don't think a sperm whale is a likely outcome. Petunias? Perhaps.

share|improve this answer
4  
Actually, the behavior is undefined, which means that anything the system does (including turning into a sperm whale and a bowl of petunias) is completely in accordance with the Standard. – David Thornley Apr 29 '10 at 14:23
Actually Marcelo, We found a bug in our system which was exactly like that. A side effect in an argument. When in debug everything was fine, but when we started to release, demons started flying out of everyones noses. Bloody UB. – daramarak Apr 29 '10 at 23:04

The order of evaluation for a, b, and c in a function call f(a,b,c) is unspecified.

Read about sequence points to get a better idea: (The undefined behavior in this particular case is not due to sequence points. Thanks to @stusmith for pointing that out)

A sequence point in imperative programming defines any point in a computer program's execution at which it is guaranteed that all side effects of previous evaluations will have been performed, and no side effects from subsequent evaluations have yet been performed. They are often mentioned in reference to C and C++, because the result of some expressions can depend on the order of evaluation of their subexpressions. Adding one or more sequence points is one method of ensuring a consistent result, because this restricts the possible orders of evaluation.

Sequence points also come into play when the same variable is modified more than once. An often-cited example is the expression i=i++, which both assigns i to itself and increments i; what is the final value of i? Language definitions might specify one of the possible behaviors or simply say the behavior is undefined. In C and C++, evaluating such an expression yields undefined behavior.

share|improve this answer
1  
And specifically for this example, the comma does not define a sequence point. This is so that compilers are free to execute function arguments in whatever order they choose, in order to produce the most effecient code. – stusmith Apr 29 '10 at 13:24
@stusmith Thanks, updated. – Amarghosh Apr 29 '10 at 13:49

Thanks for the answers.... :) The behavior is really undefined and compiler dependent. Here are some outputs

Compiled with Turbo c : 20 20 10

Compiled with Visual Studio c++: 20 20 20

Compiled with CC: 20 20 20

Compiled with gcc: 20 20 20

Compiled with dev c++: 20 20 10

share|improve this answer
3  
+1 for actually trying it on different compilers. – Amarghosh Apr 29 '10 at 10:03
2  
Just wondering: who really cares about the results ? It is undefined behavior anyway ! – ereOn Apr 29 '10 at 12:08
1  
@Amarghosh: Even if all tested compilers produced the same results, it would not mean that the answers are wrong: it is just one of the infinite possibilities induced by an undefined behavior ;) – ereOn Apr 29 '10 at 12:44
1  
@ereOn I wasn't suggesting anything towards that. I was just encouraging his attitude: he could have very well thought "oh, it's UB" and stopped there - which is perfectly fine too; but he cared enough to explore it further. I consider that to be a good attitude for a programmer. – Amarghosh Apr 29 '10 at 13:00
1  
@Amarghosh: However, experimentation on compilers in order to deduce the Standard, and what can be relied on, is not a good thing to do. Experiment if you like, but pay attention to the language definition. – David Thornley Apr 29 '10 at 14:25
show 4 more comments

Not defined.
The evaluation order of a function parameters is not defined by the standard.
So the output of this could be anything.

share|improve this answer

Not to amend previous correct answers, but a little additional information: according to the Standard, even this would be undefined:

int a =10;
printf("%d %d %d", a = 20, a = 20, a = 20);
share|improve this answer

It is highly compiler dependent.

Because evaluation order of arguments is not specified by standard.

share|improve this answer

using Mingw Compiler in Bloodshed Dev C++ : 20 20 10

share|improve this answer

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.