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 ?
++i++i++question for ... three weeks now? – Kerrek SB Aug 8 '12 at 6:47