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…)
How post-increment & pre-increment both are evaluated in function argument?

#include <stdio.h>
void fn(int a, int b)
{
  printf("Fn : a = %d \t b = %d\n", a, b);
}
 main ()
{
  int a = 5;
  printf("Main :  %d %d\n", a++, ++a);
  fn(a, a++);
 }

the output for the above code is :

 Main: 6 6
 FN: a=8     b=7 

Can anyone explain it please ?

share|improve this question
3  
I wondered if this question would show up today :-) – cnicutar Aug 8 '12 at 6:46
3  
Wow, haven't had a ++i++i++ question for ... three weeks now? – Kerrek SB Aug 8 '12 at 6:47
one rule for me ne more than one ++ fir the sme variable in one instruction... else, the beghavoir is undefined. each compiler can orgnize th succession of operations differently, and the display can be different from a compiler to another. – Hicham from CppDepend Team Aug 8 '12 at 7:45

marked as duplicate by Jay, claptrap, Jens Gustedt, Zoltan Toth, JosephH Aug 8 '12 at 22:22

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 5 down vote accepted

Yes. You want to look into sequence points. Basically, within an expression, you don't have a real guarantee when increment happens if you refer to the same variable multiple times..

So in the printf in main, ++a happens to get evaluated first -- the compiler is free to change order if it makes evaluation more efficient -- resulting in a value of 6. then the value of a is 6, that's pushed on the stack, and then a is incremented, making a 7.

the printf has 6,6 on the stack and prints it, but the value of a is now 7.

in the call to fn, a has a value of 7 and is pushed on the stack for the second parameter (why then? because C is free to sequence those things as it pleases.) Then a++ is evaluated, making a 8. That's then pushed as the first parameter.

share|improve this answer
1  
TL;DR version would be "Don't use and change a variable in the same instruction" – Alex Aug 8 '12 at 7:05
@Alex : it is possible to use and change a variable in the same instruction, but not using it twice or increment it twice. in these cases, the behavoir is undefined. b = a++; and b = ++a; are good instruction. – Hicham from CppDepend Team Aug 8 '12 at 7:43
I meant use and change in separate places (like b = a + a++;) – Alex Aug 8 '12 at 7:49

The output will vary from machine to machine. On running in SUSE 12.1, I got output as

Main: 6 7 Fn : a = 8 b = 7

What we call this is "Undefined Behavior and Sequence Points".

If you need to understand then compile your program with -S (gcc -S prog.c) option to generate ASM code. Going through ASM code (generated prog.s file) will give you move picture of the values of the variable at given point of time.

share|improve this answer

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