Tagged Questions

0
votes
1answer
88 views

C++: compute a number’s complement and its number of possible mismatches

I got a bit stuck with my algorithm and I need some help to solve my problem. I think an example would explain better my problem. Assuming: d = 4 (maximum number of allowed bits in a number, …
0
votes
7answers
379 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?
3
votes
7answers
1k views

Is two’s complement notation of a positive number the same number?

Is two's complement notation of a positive number is same as its binary representation?
4
votes
4answers
844 views

How does the bitwise complement (~) operator work?

Why is it that ~2 is -3?
3
votes
4answers
520 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 …