Reopen Please vote for reopening this.It is not same question which is marked below. Note in this question () bracket has also been used.So using () braces should have a definite behavior.
Possible Duplicate:
post and pre increment in c
Here are 2 programs
Program 1
#include<stdio.h>
int main()
{
int b=5;
int c= (b++)+(++b);
printf("%d",c);
}
output
12
Program 2
#include<stdio.h>
int main()
{
int b=5;
int c= (b++) + (++b) + (++b) + (++b);
printf("%d",c);
}
output
27
I took program 2 from here the logic on the link seems to be correct since for same logic the output of program 1 is 12. Which seems correct.
But for same explanation in program2 output is 27 and not 29. So why is this difference coming that is what I want to understand. What is wrong in explanation given on that link?