11 lines
222 B
C
11 lines
222 B
C
|
#include <stdio.h>
|
||
|
|
||
|
int main() {
|
||
|
printf("int: %ld \n", sizeof(int));
|
||
|
printf("float: %ld \n", sizeof(float));
|
||
|
printf("double: %ld \n", sizeof(double));
|
||
|
printf("char: %ld \n", sizeof(char));
|
||
|
|
||
|
return 0;
|
||
|
}
|