변수 초기화의 이유

This commit is contained in:
2025-09-25 17:45:37 +09:00
parent 672b363edc
commit ff98c5dda6

11
Practice_03/p03-6.c Normal file
View File

@@ -0,0 +1,11 @@
#include <stdio.h>
int main(){
int a = 100;
int b;
printf("변수 a : %d, 주소 -> %p\n", a, &a);
printf("변수 b : %d, 주소 -> %p\n", b, &b);
return 0;
}