Tagged Questions
25
votes
10answers
7k views
Why is two's complement used to represent negative numbers?
I'm just curious if there's a reason why in order to represent -1 in binary, two's complement is used: flipping the bits and adding 1?
-1 is represented by 11111111 (two's complement) rather than (to ...
5
votes
4answers
408 views
representation of negative numbers in c?
How does c represent negative integers! Is it by 2's complement representation or by using the msb?
-1 in hexadecimal is ffffffff.
So please clarify me in this regard.
2
votes
4answers
594 views
2's complement hex number to decimal in java
I have a hex string that represents a 2's complement number. Is there an easy way (libraries/functions) to translate the hex into a decimal without working directly with its bits??
E.G. This is the ...
0
votes
3answers
108 views
Subtraction of 2 negative integer (two's complement) never overflowing
I came across this in a computer architecture textbook:
Subtracting a strictly negative integer from another strictly negative integer (in two's complement) will never overflow.
The textbook ...