C The sizeof Operator
Get the Memory Size
We introduced in the data types chapter that the memory size of a variable varies depending on the type:
Data Type | Size |
---|---|
int |
2 or 4 bytes |
float |
4 bytes |
double |
8 bytes |
char |
1 byte |
The memory size refers to how much space a type occupies in the computer's memory.
To actually get the size (in bytes) of a data type or variable, use the sizeof
operator:
Example
int myInt;
float myFloat;
double myDouble;
char myChar;
printf("%lu\n", sizeof(myInt));
printf("%lu\n", sizeof(myFloat));
printf("%lu\n", sizeof(myDouble));
printf("%lu\n", sizeof(myChar));
Try it Yourself »
Note that we use the %lu
format specifer to print the result, instead of %d
. It is because the compiler expects the sizeof operator to return a long unsigned int
(%lu
), instead of int
(%d
). On some computers it might work with %d
, but it is safer to use %lu
.
Why Should I Know the Size of Data Types?
Knowing the size of different data types is important because it says something about memory usage and performance.
For example, the size of a char
type is 1 byte. Which means if you have an array of 1000 char
values, it will occupy 1000 bytes (1 KB) of memory.
Using the right data type for the right purpose will save memory and improve the performance of your program.
You will learn more about the sizeof
operator later in this tutorial, and how to use it in different scenarios.