I was expecting this to print a very large number and that same number -1 but it just prints -1 and -2, why is this?
fprintf(stderr, "%d\n", 0xffffffff);
fprintf(stderr, "%d\n", 0xfffffffe);
|
|
|
The Counting down from 3, values are:
etc. If you want FFFF FFFF to display as a large positive number, use the |
|||||||||||||||
|
|
The argument "%d" prints the input as a signed integer. As a result, you have discovered the two's complement representation, consider "%u" instead. |
|||
|
|
|
The values you mention are the two's complement representation of -1 and -2 Look up two's complement |
|||
|
|
|
The first bit on a signed integer is the sign, so the highest number that could be stored is 0xEFFFFFFF. |
|||
|
|