- Get link
- X
- Other Apps
Sizeof - C programming
It shows the size of Data types.
#include <stdio.h>
int main(){
printf("%d", sizeof(int));
return 0;
}
It shows the size of Data types.
#include <stdio.h>
int main(){
printf("%d", sizeof(int));
return 0;
}