I was just running a snippet from this website.
Code:
int a=10,b;
b=a++ + ++a;
printf("%d,%d,%d,%d",b,a++,a,++a);
But when i ran through VS 2005, I got 22,13,14,14.
Am I missing anything??
Mesh
|
Newbie Member
|
|
| 20Jul2009,18:17 | #1 |
|
Hi
I was just running a snippet from this website. Code:
int a=10,b;
b=a++ + ++a;
printf("%d,%d,%d,%d",b,a++,a,++a);
But when i ran through VS 2005, I got 22,13,14,14. Am I missing anything?? Mesh |
|
Mentor
|
![]() |
| 20Jul2009,22:06 | #2 |
|
The behaviour is undefined because you use side effect operators twice on the same variable in the same statement. Twice.
This means the behaviour is dependent on what the compiler writer felt like at the time and should be avoided. Increment a only once per statement and do instead something like: Code:
int b1=a++;
int b2=++a;
b=b1+b2;
int b3=a++;
int b4=++a;
printf("%d,%d,%d,%d",b,b3,a,b4);
|