Why does this code always produce x=2?
unsigned int x = 0;
x++ || x++ || x++ || x++ || ........;
printf("%d\n",x);
|
Why does this code always produce
|
||||
|
the 1st at which point the or short circuits, returns true, and leaves x at 2. |
|||||||||||||||||||||
|
|
x++ || x++ || x++ || x++ || ........;
|
|||
|
|
|
Because of short circuit in boolean expression evaluation and because |
|||||||
|
|
First |
|||
|
|
|
When you're evaluating "a || b || c || d || e || ..." you can stop evaluating at the first non-zero value you find. The first "x++" evaluates to 0, and increments x to 1, and evaluating the expression continues. The second x++ is evaluated to 1, increments x to 2, and at that point, you need not look at the rest of the OR statement to know that it's going to be true, so you stop. |
|||
|
|
Because logical OR short-circuits when a true is found. So the first x++ returns 0 (false) because it is post-increment. (x = 1) The second x++ returns 1 (true) - short-circuits. (x = 2) Prints x = 2; |
|||
|
|
|
Because of early out evaluation of comparisons. This is the equivalent of
The compiler quits comparing as soon as x==1, then it post increments, making x==2 |
|||||||
|
|
Because the first "x++ || x++" evaluates to "true" (meaning it is non zero because "0 || 1" is true. Since they are all logical OR operators the rest of the OR operations are ignored. Mike |
|||
|
|
|
The In the expression |
|||
|
|
|
It is the short circuiting of logical operators. It's the same reason when you do
|
|||||
|
||is a sequence point between the left and right sides. – Johannes Schaub - litb Jan 14 '10 at 19:49