Tagged Questions

5
votes
4answers
406 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.
3
votes
1answer
121 views

C checking for signed number representation

The following way of checking for the signed number representation checks for twos complement correctly on my machine, but I dont have ones complement or signed magnitude machines to check it. Would ...
3
votes
2answers
582 views

Compilers and negative numbers representations

Recently I was confused by this question. Maybe because I didn't read language specifications (it's my fault, I know). C99 standard doesn't say which negative numbers representation should be used by ...