Computer Science, asked by nasima7866, 9 months ago

What is the range of signed (one's complement) integral ?
(1) 32767 to 32867, (2) - 32767 to – 32867,
(3) - 32768 to 32767, (4) - 32767 to 32767.​

Answers

Answered by aditya9818
1

Answer:

(c) .......................................

Answered by NirmalPandya
0

The range of signed (one's complement) integral is (c) -32,768 to 32767.

  • The range of unsigned int is 0 to 65,535.
  • The range of signed char is -128 to 127.
  • The range of unsigned char is 0 to 255.
  • In case, we want to store a value larger that the range of int, we use  the data type long.
  • To get exact size of type of variable, an operator called as sizeof operator is used. We can obtain storage size of data type using it.

Similar questions