An signed integer (using 8 bits) --- Range==> -128 to 127.
And if we consider the 2's Complement representation:
10000000 =128/(-0) [ Since its 2's Complement is 10000000 ]
So in a way its a negative zero.
Now for a signed integer, 128 is 1000 0000 and the 2's complement is also 1000 0000, so don't we have a copy of 0 [ in the negative form as well ] using this representation? Or am is missing something?
Sorry for the typo. Yes the range is -128 to 127.
But 8 bits can represent this number in memory 10000000. If this number CAN be stored in memory then what is its value?
intstorage and whether that was a good idea. This is beyond StackOverflow's purpose. Wikipedia's article on 2s complement is probably better for giving you the background you need. – Rob Napier Aug 12 '11 at 19:08