#include <stdio.h>



int main()

{

int* a;

*a = 10;

printf("%d", *a);

}


디버깅하면 초기화되지 않은 'a' 지역 변수를 사용했습니다.

라면서 안 됨..