#include <stdio.h>
int main() {
printf("문자형 크기 : %d바이트\n", sizeof(char));
printf("정수형 크기 : %d바이트\n", sizeof(int));
printf("short형 크기 : %d바이트\n", sizeof(short));
printf("long형 크기 : %d바이트\n", sizeof(long));
printf("단정도 실수형 크기 : %d바이트\n", sizeof(float));
printf("배정도 실수형 크기 : %d바이트\n", sizeof(double));
}
To embed this project on your website, copy the following code and paste it into your website's HTML: