Variants of int, char and float - double, signed
Duration: 12:10 Min | Sep 07, 2023
Basic signed integer type capable of representing both positive and negative whole numbers.
Minimum size: At least 2 bytes, usually 4 bytes
Format specifier: %d or %i
Range: Depends on the size of the int type. Commonly, it can store values from -2,147,483,648 to 2,147,483,647
char: