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.
|
feedback
|
|
ISO C (C99), section In all those representations, positive numbers are identical, the only difference being the negative numbers. To get the negative representation for a positive number, you:
You can see this in the table below:
Keep in mind that ISO doesn't mandate that all bits are used in the representation. They introduce the concept of a sign bit, value bits and padding bits. Now I've never actually seen an implementation with padding bits but, from the C99 rationale document, they have this explanation:
| ||||
|
feedback
|
|
C allows sign/magnitude, one's complement and two's complement representations of signed integers. Most typical hardware uses two's complement for integers and sign/magnitude for floating point (and yet another possibility -- a "bias" representation for the floating point exponent). | |||
|
feedback
|
In two's complement (by far the most commonly used representation), each bit except the most significant bit (MSB), from right to left (increasing order of magnitude) has a value 2n where n increases from zero by one. The MSB has the value -2n. So for example in an 8bit twos-complement integer, the MSB has the place value -27 (-128), so the binary number: 1111 11112 is equal to -128 + 0111 11112 = -128 + 127 = -1 One useful feature two's complement is that a processor's ALU only requires an adder block to perform subtraction, by forming the two's complement of the right-hand operand. For example 10 - 6 is equivalent to 10 + (-6); in 8bit binary (for simplicity of explanation) this looks like:
Where the [1] is the discarded carry bit. Another example; 10 - 11 == 10 + (-11):
Another feature of two's complement is that it has a single value representing zero, whereas sign-magnitude and one's complement each have two; +0 and -0. | ||||
|
feedback
|
|
For integral types it's usually two's complement (implementation specific). For floating point, there's a sign bit. | ||||
|
feedback
|