From 672b363edc5f8242d0338642926f52d5963fe20d Mon Sep 17 00:00:00 2001 From: foxliver Date: Thu, 25 Sep 2025 17:44:04 +0900 Subject: [PATCH] =?UTF-8?q?=EC=9E=90=EB=A3=8C=ED=98=95=EC=9D=98=20?= =?UTF-8?q?=ED=81=AC=EA=B8=B0=20=ED=99=95=EC=9D=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Practice_03/p03-5.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Practice_03/p03-5.c diff --git a/Practice_03/p03-5.c b/Practice_03/p03-5.c new file mode 100644 index 0000000..237228d --- /dev/null +++ b/Practice_03/p03-5.c @@ -0,0 +1,13 @@ +#include + +int main(){ + int x; + + printf("변수 x의 크기 : %d\n", sizeof(x)); + printf("char 형의 크기 : %d\n", sizeof(char)); + printf("int 형의 크기 : %d\n", sizeof(int)); + printf("float 형의 크기 : %d\n", sizeof(float)); + printf("double 형의 크기 : %d\n", sizeof(double)); + + return 0; +} \ No newline at end of file