Possible Duplicate:
post and pre increment in c

I am new to C, i have an Increment operator program in C

#include<stdio.h>
main(){
  int a, b;
  a = 2;
  b = a + ++a + ++a;
  printf("%d", b);
  getchar();
}

The output is 10, can someone explain me how the output will be 10 .

link|improve this question

Homework?....... – paercebal Jul 21 '11 at 16:43
7  
Undefined behavior. Nasal demons. – Fred Larson Jul 21 '11 at 16:44
1  
Questions of this sort come up on SO pretty regular. – Andrey Jul 21 '11 at 16:45
feedback

closed as exact duplicate by Fred Larson, eldarerathis, Alok, Paul R, You Jul 21 '11 at 16:57

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

up vote 4 down vote accepted

This is undefined, the ++i can happen in any order.

Function call arguments are also ambigiously evaluated, e.g. foo(++i,++i).

Not all operator chains are undefined, a||b||c is guaranteed to be left-to-right, for example.

The guarantees are made in places known as sequence points although this terminology is being deprecated and clarified in C++0x.

What's odd in your example is that neigher 2+3+4 nor 4+4+3 happened, so the compiler evaluated the left side first in one step and the right side first in the other. This was probably an optimisation to flatten the depencency graph.

link|improve this answer
Why the downvote?... o.O ? +1, to compensate. – paercebal Jul 21 '11 at 16:50
It's not just that the ++i can happen in any order: there's no sequence point around operators (except &&, ||, ?: and ,), nor is there one around the , that separates function arguments. See e.g. N1256 §C and §5.1.2.3. If an object is both written and read with no intervening sequence point, the behavior is undefined (§6.5.16.3). – Gilles Jul 21 '11 at 17:07
feedback
a + ++a + ++a;

Behaviour for this is undefined. The compiler might generated code that evaluated this as 2 + 4 + 4 or 3 + 3 + 4, but any combination/ordering of incrementing and accessing is a "valid" result.

link|improve this answer
couldn't it also be 4 + 4 + 4 (increments first?) – KevinDTimm Jul 21 '11 at 16:51
1  
Not only that, but since the behavior is undefined, printing 42 or Bad diff! No cookie! is a valid behavior (just extremely unlikely in practice). So is making the computer burst into flames, or as the classical formulation goes, making demons fly through your nose. – Gilles Jul 21 '11 at 16:51
sure, any ordering is fine. I just wrote examples that add up to 10. – Karoly Horvath Jul 21 '11 at 16:52
@Giles the behaviour is not undefined, the order of the behaviour is undefined. Printing 42 is not allowed. (You were right, however, to correct my use of the term "associative".) – spraff Jul 21 '11 at 16:55
@Gilles: I'm waiting for like 10 years to a compiler that does those things. It looks like I have to write it myself. – Karoly Horvath Jul 21 '11 at 16:55
show 1 more comment
feedback

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