왜 main펑션의 첫번째 초기화 안된 변수의 값은 - 인가요?
덕분에(?) pointer의 경우 stack(?) 부분을 refer, 그 결과
dereferring 해서 assignment까지 되는 군요.
무슨 특별한 이유라도 있나요?
program1)
#include
int main()
{
int *a, *b, *c;
printf("the address of a, b, c %i %i %i\n", (int)&a, (int)&b,
(int)&c);
printf("the reference of a, b, c %i %i %i\n", (int)a, (int)b,
(int)c);
return 0;
}
result ->
the address of a, b, c -1073742536 -1073742540 -1073742544
the reference of a, b, c -1073742504 1073782272 1074724984