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);
|
|
The output is indeterminate, because 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. |
|||||||
|
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)
|
|||||||
|
|
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 |
|||||||||||||||||||||
|
|
Not defined. |
|||
|
|
|
Not to amend previous correct answers, but a little additional information: according to the Standard, even this would be undefined:
|
|||
|
|
|
It is highly compiler dependent. Because evaluation order of arguments is not specified by standard. |
|||
|
|