#include <stdio.h>
int main(void) {
printf("char size: %lu bytes
", sizeof(char));
printf("int size: %lu bytes
", sizeof(int));
printf("short size: %lu bytes
", sizeof(short));
printf("long size: %lu bytes
", sizeof(long));
printf("float size: %lu bytes
", sizeof(float));
printf("double size: %lu bytes
",
sizeof(double));
printf("long double size: %lu bytes
",
sizeof(long double));
}