What is a dangling pointer?
Answers were Sorted based on User's Feedback
Answer / sumithra.a
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
Is This Answer Correct ? | 16 Yes | 0 No |
Answer / achal ubbott
Here is an example of dangling pointer.
char* p = new char;// allocate a byte from heap section.
delete p ; // deallocation.
*p = 44 ; // using a dangling pointer.
Is This Answer Correct ? | 8 Yes | 0 No |
What is function overriding in c++?
What are the vectors in c++?
What is "mutable" keyword?
Write an algorithm that determines whether or not an almost complete binary tree is a heap.
How is memory managed in C++?
What are the benefits of oop in c++?
i have given a project to create examination seating plan system in c++. so can anyone send me the answer of this question quickly??????
Can we specify variable field width in a scanf() format string? If possible how?
what is the use of void main() in C++ language?
What is wrapper class in c++?
What are signs of manipulation?
What are the differences between java and c++?