What Is The Smallest Signed Integer That May Be Represented Using 32 Bits?

What Is The Smallest Signed Integer That May Be Represented Using 32 Bits? The minimal number in two’s complement notation is 0x80000000 = -2147483648 . The interesting fact about this number is that it is equal to its own complement, i.e. inverting all bits results in 0x7FFFFFFF and adding 1 yields 0x80000000 , which is