Interview Question
Created by admin on Sat, 17/11/2012 - 15:15
Question:
What is a dangling pointer?
Language:
Answer:
A dangling pointer arises when you use the address of an object after its lifetime is over.This may occur in situations like returning addresses of the automatic variables from a function or using the address of the memory block after it is freed.