Possible Duplicate:
why “++x || ++y && ++z” calculate “++x” firstly ? however,Operator “&&” is higher than “||”

If you look at C's precedence table, you'll see that && has higher precedence than ||.

But take a look at the following code:

a=b=c=1;

++a || ++b && ++c;

printf("%d %d %d\n",a,b,c);

It prints out "2 1 1", meaning that the "++a" is evaluated first, and once the program sees a TRUE there it stops right there, because what is on the other side of the || is not important.

But since && has higher precedence than ||, shouldn't "++b && ++c" be evaluated first, and then the result plugged back into "++a || result" ? (in this case the program would print "1 2 2").

link|improve this question

Yeah I didn't catch that. Thanks for the heads up. – DanielS Sep 22 '11 at 21:30
feedback

closed as exact duplicate by Jonathan Leffler, sidyll, Charles Bailey, Mysticial, mu is too short Sep 22 '11 at 22:07

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.

6 Answers

up vote 2 down vote accepted

Just try to imagine it with parentheses:

++a || ++b && ++c;

equals

(++a) || (++b && ++c);

which is evaluated from left to right.

if && and || would have the same precedence, it would look like

(++a || ++b) && (++c);
link|improve this answer
Nice explanation, thanks. – DanielS Sep 22 '11 at 21:26
feedback

The precedence rules only say that it will be evaluated like this:

++a || (++b && ++c);

Now comes the short circuiting behavior of the logic operators which says that you have to evaluate terms from left to right and stop when the result is known. The part on the right never gets executed.

link|improve this answer
Gotcha. Can you give me an example where the precedence of && over || will matter? Thanks – DanielS Sep 22 '11 at 21:22
It matters here. If they had equal precedence or if || had higher precedence, it would be evaluated as (++a || ++b) && ++c, so both ++a and ++c would be evaluated. – R.. Sep 22 '11 at 21:35
Good point. Thanks. – DanielS Sep 23 '11 at 2:43
feedback

No, in this this case, short-circuiting allows you to not compute the RHS of the ||.

The whole purpose of this is to avoid side-effects on the RHS.

link|improve this answer
feedback

Precedence and order of evaluation are two completely different things. For logical operator expressions, evaluation is always left-to-right. The expression ++a || ++b && ++c is interpreted as

  1. Evaluate ++a
  2. If the result of 1 is zero, evaluate ++b && ++c

The expression is parsed as ++a || (++b && ++c); the whole expression is true if either of the subexpressions ++a or ++b && ++c is true.

link|improve this answer
Gotcha, and yeah my confusion was to assume that precedence affected order of evaluation too. – DanielS Sep 23 '11 at 2:44
feedback

&& has higher precedence only in parse tree. But compiler optimizes the code as

if( !++a ) {
    ++b && ++c;
}
link|improve this answer
This is not an optimization. – R.. Sep 22 '11 at 21:36
How do you better like more to call it. Doesn't matter. – artyom.stv Sep 23 '11 at 14:16
The idea that short-circuiting is an "optimization" is a misunderstanding that comes up on SO again and again. In many cases, not short-circuiting would be the optimization. For example, ++a|++b (branchless) is almost certainly cheaper to compute than ++a||++b (conditional branch). What's important to realize is that short-circuiting is not optional behavior, and the results are different. – R.. Sep 23 '11 at 14:59
Thanks, good to know that such behavior is not optional. I was too lazy to open standard to look this small issue. Anyway I think it is a bad practice to write "assignment" operators in conditions (any kind assigment) - new compilers generate very well optimized code (no need to make such optimizations as assignment in condition yourself). – artyom.stv Sep 23 '11 at 20:42
There are plenty of places where you end up with expressions with side effects in a conditional or a logical and/or, even if you don't write an assignment there. Function calls would be an obvious example. – R.. Sep 23 '11 at 20:55
feedback

Your example ++a || ++b && ++c is the same as ++a || (++b && ++c).

link|improve this answer
feedback

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