What is dangling pointers?and what is memory leak?

Answers were Sorted based on User's Feedback



What is dangling pointers?and what is memory leak? ..

Answer / rishabh agrawal

A1 - Dangling pointer points to a memory location which is
being removed.
E.g.
int* a = new int;
int *b = a;
delete b;

Now a will be a dandling pointer.

A2 - Memory leaks occur when memory allocated to a pointer
is not deleted and the pointer goes out of scope. This
allocated memory never gets de-allocated and remains in the
heap until the system is restarted.
E.g.
void foo()
{
int* ptr = new int;
*ptr = 10;
...
...
}
Since ptr is allocated memory using 'new', but no 'delete'
is called, hence memory allocated to ptr will leak.

Is This Answer Correct ?    106 Yes 22 No

What is dangling pointers?and what is memory leak? ..

Answer / prakash

dangling pointer : Dangling pointers in computer
programming are pointers that do not point to a valid
object of the appropriate type. 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.

memory leak:A memory leak in computer science is a
particular type of unintentional memory consumption by a
computer program where the program fails to release memory
when no longer needed.
ex:
void f(void)
{
void* s;
s = malloc(50); /* get memory */
return;
}
//control comes out w/o freeing the memory....

Is This Answer Correct ?    70 Yes 13 No

What is dangling pointers?and what is memory leak? ..

Answer / kush

a dangling pointer is a pointer which points to a dead location in memory, means the variable or object is exist on that memory location bt that was deleted and pointer is still pointing to that location . this pointer is called dangling pointer.

EX:
int *function()
{
int a=500;
return &a;
}

int main()
{
int *ptr;
ptr=function();
++*ptr;
printf("%d",*ptr);//output=501
}
in the above example one function is there which is having return type int * means this function retuns a address.
now came int main(), i have creating one pointer *ptr and after that calling the function then whatever the address return by function is stored in *ptr.
but see the storage class of variable a in function it is auto by default and when function execution is end that variable is destroyed and funtion will return the address of variable a.
tha variable is destroy bt my *ptr is still pointing and utilizing that meroy location and data on that location this is called dangling pointer..

thanks...

Is This Answer Correct ?    28 Yes 5 No

What is dangling pointers?and what is memory leak? ..

Answer / shamoona

Dangling Pointer
dangling pointer point to unknown destination
for example
int*ptr;
{
int a=5;
ptr=

Is This Answer Correct ?    1 Yes 4 No

What is dangling pointers?and what is memory leak? ..

Answer / kusuma

points to memory allocation.

Is This Answer Correct ?    8 Yes 31 No

Post New Answer

More C++ General Interview Questions

Explain what is polymorphism in c++?

0 Answers  


What are the restrictions apply to constructors and destructors?

0 Answers  


What is iostream in c++ used for?

0 Answers  


Why namespace is used in c++?

0 Answers  


What is the difference between *p++ and (*p)++ ?

0 Answers  






What is the type of 'this' pointer?

0 Answers  


Can the creation of operator** is allowed to perform the to-the-power-of operations?

0 Answers  


What is buffering in c++?

0 Answers  


Explain static and dynamic memory allocation with an example each.

0 Answers  


What are c++ variables?

0 Answers  


What are virtual functions in c++?

0 Answers  


Draw a flow chart and write a program for the difference between the sum of elements with odd and even numbers. Two dimensional array.

0 Answers  


Categories