Computer Science, asked by poori15, 11 months ago

if integer needs two bytes of storage then the minimum value of signed integer in C would be ​

Answers

Answered by lovingheart
9

Answer:

Minimum value of signed integer in C would be : -32,768

Explanation:

Basically integers can store whole numbers (0, 1…n). Integer is one of built-in data types in C. It takes both positive and negative number according to its sub types viz. signed int, int, unsigned int, short int, signed short int, unsigned short int, long int, signed long int, unsigned long int. These integers does not accept numbers with decimal.

A 2 byte signed integer takes minimum value of -32,768 to the maximum value of 32,767.

Similar questions