From ff98c5dda6f05ffd5b3e23247c1d1151d78a9270 Mon Sep 17 00:00:00 2001 From: foxliver Date: Thu, 25 Sep 2025 17:45:37 +0900 Subject: [PATCH] =?UTF-8?q?=EB=B3=80=EC=88=98=20=EC=B4=88=EA=B8=B0?= =?UTF-8?q?=ED=99=94=EC=9D=98=20=EC=9D=B4=EC=9C=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Practice_03/p03-6.c | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Practice_03/p03-6.c diff --git a/Practice_03/p03-6.c b/Practice_03/p03-6.c new file mode 100644 index 0000000..c7138a6 --- /dev/null +++ b/Practice_03/p03-6.c @@ -0,0 +1,11 @@ +#include + +int main(){ + int a = 100; + int b; + + printf("변수 a : %d, 주소 -> %p\n", a, &a); + printf("변수 b : %d, 주소 -> %p\n", b, &b); + + return 0; +} \ No newline at end of file