Two’s Complement
Two’s compliment allows us to convert numbers from positive to negative and vice versa.
Steps
- Flip all the bits.
- Add 1.
Example
00000011 = 3
FLIP 11111100
ADD 00000001
------------
11111101 = -3
Two’s compliment allows us to convert numbers from positive to negative and vice versa.
00000011 = 3
FLIP 11111100
ADD 00000001
------------
11111101 = -3
13 Jan 20251 min read