InterviewSolution
Saved Bookmarks
| 1. |
What Is A Dangling Pointer? |
|
Answer» When the LOCATION of the deallocated MEMORY is pointed by the pointer even after the DELETION or allocation of OBJECTS is done, without the modification in the value of the pointer, then this TYPE of pointer is called a dangling pointer. When the location of the deallocated memory is pointed by the pointer even after the deletion or allocation of objects is done, without the modification in the value of the pointer, then this type of pointer is called a dangling pointer. |
|