answersLogoWhite

0

Two's complement is the normal implementation of signed integers, so just take the negative.

int a = 123;

int b = -a; /* b now equals -123 */

The actual implementation of two's complement notation is that, to make something negative, simply invert the bits and then add 1.

12310 = 00000000011110112 (using 16 bit notation)

Invert and you get 111111111000100. Add one and you get 111111111000101, so...

-12310 = 1111111110001012

User Avatar

Wiki User

13y ago

Still curious? Ask our experts.

Chat with our AI personalities

SteveSteve
Knowledge is a journey, you know? We'll get there.
Chat with Steve
CoachCoach
Success isn't just about winning—it's about vision, patience, and playing the long game.
Chat with Coach
RafaRafa
There's no fun in playing it safe. Why not try something a little unhinged?
Chat with Rafa

Add your answer:

Earn +20 pts
Q: How do you calculate 2s complement of an integer?
Write your answer...
Submit
Still have questions?
magnify glass
imp