Integers are whole numbers that can have both zero, positive and negative values but no decimal values. For example, 0
, -5
, 10
We can use int
for declaring an integer variable.
int id;
Here, id is a variable of type integer.
You can declare multiple variables at once in C programming. For example,
int id, age;
The size of int
is usually 4 bytes (32 bits). And, it can take 232
distinct states from -2147483648
to 2147483647
.