변수 초기화의 이유
This commit is contained in:
11
Practice_03/p03-6.c
Normal file
11
Practice_03/p03-6.c
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user