if integer needs two bytes of storage then the minimum value of signed integer in C would be
Answers
Answered by
3
Answer:
If integer needs two bytes of storage then :
Minimum value of signed integer in C is :
2∧15 - 1
Explanation:
From total of 16 bits :
One bit is used to store the sign
Other 15 bits are used to store the magnitude
Therefore the minimum value of would be 2^15 - 1 or 32767.
Similar questions