In the C programing language, why do the bitwise operators (& and |) have lower precedence than the equality operator (==)? It does not make sense to me.

link|improve this question
2  
Because that's the way they designed it. Also, parentheses are cheap. – CanSpice Jan 13 '11 at 20:50
Why it doesn't make sense to you? – peoro Jan 13 '11 at 20:54
2  
I got caught out when using the expression if (a & b == c), took me a while to find out why it wasn't working. – poida Jan 13 '11 at 21:00
feedback

3 Answers

up vote 12 down vote accepted

You need to ask Brian Kernighan or Dennis Ritchie.
From this forum: http://bytes.com/topic/c/answers/167377-operator-precedence

The && and || operators were added later for their "short-circuiting" behavior. Dennis Ritchie admits in retrospect that the precedence of the bitwise operators should have been changed when the logical operators were added. But with several hundred kilobytes of C source code in existence at that point and an installed base of three computers, Dennis thought it would be too big of a change in the C language...

So, that might be a reason? I'm guessing since there are several layers of bitwise precendence (unlike relational comparisons) that it's cruft that's existed since...forever...and just was never corrected.

link|improve this answer
feedback

It doesn't make sense to Dennis Ritchie, either, in retrospect.

http://www.lysator.liu.se/c/dmr-on-or.html

&& and || were added to the language after | and &, and precedence was maintained for reasons of compatibility.

link|improve this answer
feedback

I don't have an authoritative answer as to why K&R chose the precedence they did. One example that makes a fair amount of sense would be this one:

if (x == 1 & y == 0) {
    /* ... */
}

Since this is the bitwise AND operator it uses a non-short-circuiting evaluation mode, as would

if (x == 1 | y == 0) {
    /* ... */
}

use the non-short-circuiting OR operator. This is probably why they chose to have the precedence group this way, but I agree with you that in retrospect it doesn't seem like a good idea.

link|improve this answer
1  
This doesn't make any sense. Why would you use the bitwise operator instead of a logical one in this case? – Nathan Fellman Jan 13 '11 at 20:55
2  
@Nathan Fellman- Caladain's answer seems to hit this one on the head. – templatetypedef Jan 13 '11 at 20:59
Right. The precedence of & and | makes perfect sense as logical operators, but little sense as bitwise operators. – dan04 Jan 15 '11 at 17:57
Kudos for this awesome non-short-circuiting logical operators usage. Never thought of that. – Spidey Apr 12 at 18:25
feedback

Your Answer

 
or
required, but never shown

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