0
how I can know what numbers can be stored with the two' s complement to avoid overflow? I would appreciate any answer :)
1 Resposta
0
Any number from -2^(n-1) to +(2^(n-1))-1 can be stored. Where n is number of bits. So for 8-bit, it can only store -128 to +127 and 4-bit will store -8 to +7