Tagged Questions

6
votes
4answers
2k views

K & R Question: Need help understanding “getbits()” method in Chapter 2

As I've mentioned before, I'm going through K&R, and overall am doing all right with it. However, in chapter 2, the section on bitwise operators (section 2.9), I'm having trouble understanding how ...
1
vote
4answers
121 views

idiomatic way to construct the complement of an array in C

I'm writing a function that gets passed a pointer to an array of length 4. This array will contain integers 0 <= x <= 52 and I would like to construct an array of length 48 with every integer ...
1
vote
7answers
1k views

why C, C++, Java does not use one complement?

I heard C, C++, Java uses two complements for binary representation. Why not use 1 complement? Is there any advantage to use 2 complement over 1 complement?
0
votes
3answers
144 views

Why 1s complement is -2

int main() { int a=1,b; b=~1; printf(""%d",b); return 0; } pls explain by showing bitwise operation it will be helpful to understand... thanks in advance.......