Tagged Questions

124
votes
7answers
30k 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
779 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
142 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 ...
1
vote
3answers
60 views

Integer constant is too large for its type AND invalid operands to binary operators

I'm using double long in my 64 bit computer and sizeof(double long) is 16 bytes. So I do the following assignment: long double f = 0xA0000000000000000000000000000000; // 32 characters in hex and ...
1
vote
5answers
201 views

preprocessor macros i don't understand

i'm currently looking through some source code i found on the net, which makes use of preprocessor macros in a way i don't understand. it implements the quad-edge data-structure. hope, someone can ...