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); I expected the answer to be 22, 13,13,13 But when i ran through VS 2005, I got 22,13,14,14. Am I missing anything?? Mesh
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); for defined behaviour on all platforms and compilers.