24
votes
7answers
4k views
Absolute Beginner’s Guide to Bit Shifting?
I've been attempting to learn C in my spare time, and other languages (C#, Java, etc.) have the same concept (and often the same operators) ...
What I'm wondering is, at a core level, what does …
6
votes
4answers
439 views
Why does this bitwise shift-right appear not to work?
Could someone explain to me why the mask is not shifted to the right at all? You can use anything in place of that 1 and the result will be the same.
unsigned mask = ~0 >> 1;
printf("%u\n", …
2
votes
5answers
838 views
C++ Binary operators order of precedence
In what order are the following parameters tested (in C++)?
if (a || b && c)
{
}
I've just seen this code in our application and I hate it, I want to add some brackets to just clarify the …
