What is a dangling pointer?

Answers were Sorted based on User's Feedback



What is a dangling pointer?..

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

What is a dangling pointer?..

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 a dangling pointer?..

Answer / vemana palleboina

Blocked memory.

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More C++ General Interview Questions

What is function overriding in c++?

0 Answers  


What are the vectors in c++?

0 Answers  


What is "mutable" keyword?

2 Answers   Infosys, Teradata,


Write an algorithm that determines whether or not an almost complete binary tree is a heap.

0 Answers   TCS,


How is memory managed in C++?

2 Answers  


What are the benefits of oop in c++?

0 Answers  


i have given a project to create examination seating plan system in c++. so can anyone send me the answer of this question quickly??????

1 Answers  


Can we specify variable field width in a scanf() format string? If possible how?

0 Answers  


what is the use of void main() in C++ language?

0 Answers  


What is wrapper class in c++?

0 Answers  


What are signs of manipulation?

0 Answers  


What are the differences between java and c++?

0 Answers  


Categories