잘못올려서 다시올림



포인터 씀
int n=15;
int *p= null;
p = &n;
prinft("%d", p);  

포인터 안 씀
int n=15;
int p;
p = &n;
prinft("%d", p);  

이 둘다 차이 없고 똑같은 거임?