WHAT IS THE VALID RANGE OF NUMBERS FOR INT TYPE OF DATA?
a.
0 to 2560 to 2560 to 256
b.
-65536 to +65536
c.
-32768 to +32767
d.
No specific range
Answers
Answered by
0
Answer:
option b
Explanation:
Mark me the brainliest
Answered by
0
Answer:
The valid range of numbers for int type of data is -32768 to +32767
Explanation:
What is int data type?
- An integer variable can hold zero, positive, and negative values without the use of a decimal. The integer data type is represented in C by the 'int' keyword, and it can be signed or unsigned. If an integer variable's value is unsigned, it is assumed to be positive by default.
- The int data type is a 32-bit signed two's complement integer with a minimum value of -231 and a maximum value of 231-1 by default.
- Int, which stands for "integer," is a basic variable type built into the compiler that is used to define numeric variables that hold whole numbers. Float and double are two other data types.
To learn more about int data type refer to :
https://brainly.in/question/50290182
https://brainly.in/question/16086789
#SPJ2
Similar questions