Tagged Questions

120
votes
7answers
28k 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 ...
7
votes
4answers
770 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
1answer
136 views

Binary shift of int not possible

usigned int val = 1; val <<= 30; cout << intToBin(val) << endl; string intToBin(unsigned int val) { unsigned int k=1; string ret; while (k <= val) { if (k ...