Answered Questions

  • What is dangling pointer

    SURESH KUMAR KOLLIMALLA

    • May 10th, 2013

    By using dangling pointer we can access the values at the deallocated memory here, in the below code the memory allocated for variable n will be dealloeated as and when the control transfers from func...

    ishwar

    • Oct 19th, 2011

    Dangling pointers arise when an object is deleted or deallocated, without modifying the value of the pointer, so that the pointer still points to the memory location of the deallocated memory.