Variables are used for storing data during program execution.
Data Types
Data Type | Size (Byte) | Description |
---|---|---|
char | 1 | Integer or character |
short int long long long | 2 4 4 or 8 8 | Integer |
float double long double | 4 8 8 or 16 | Floating-point number |
In C, the exact sizes of the data types are not fixed. The sizes shown in the ...