댕글링 포인터는 포인터가 값이 존재하지 않는 메모리주소를 가르키고 있다는 것이다. 댕글링 포인터가 발생이 되면 시스템에서 심각한 문제가 발생이 된다. Segment fault 라는 크래쉬가 발생이 된다고 보면 된다. A dangling pointer is a pointer that pointers to some non-existing memory location which means a deallocated memory block. A dangling pointer occurs at the time of the object destruction when the object is deleted or de-allocated from memory without modifying the value of the ..