0
Wha is int
5 Respostas
+ 5
stands for integer, it's a datatype which can save a non-decimal number like 24 ^^
+ 1
1. int is a datatype which is used to store integer constants.
2. Integer constants consists of decimal integer constants (347, -628, 987648), octal integers (065, 0, 0469), hexadecimal integer (0x5, 0XA4), binary literals (0b1011010, 0b11101)
3. The size of an int variable is 4 bytes
4. The range of an int variable is -2,147,483,648 to 2,147,483,647, that is nothing but -2^32 to (2^32)-1
0
datatype
0
and when it's use
- 1
int stands for integer. Is is a data type and it's value ranges from -32768 to 32767.