Tagged Questions
1
vote
4answers
117 views
Bitwise Complement
I have a sample problem with w=1, y=7, z=0, x = ~(w && y) | y; and the solution is x = -1, but I can't figure out why?
Here is my thought process:
(w && y) = (1 && 7) = 1
~1
1 ...
-1
votes
1answer
85 views
Finding how many bits it takes to represent a 2's complement using only bitwise functions
We can assume an int is 32 bits in 2's compliment
The only Legal operators are: ! ~ & ^ | + << >>
At this point i am using brute force
int a=0x01;
x=(x+1)>>1; //(have tried with just ...