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

What does obj stand for?

0 Answers  


How to tokenize a string in c++?

0 Answers  


Give 10 points of differences between C & C++.

0 Answers   HCL,


Write a program that will count the number of digits in an input integer up to value MAX_VALUE (2147483647). Thus, for an input of 5837 the output should be 4 digits Make sure that your program works for the numbers 0, 1, and 10. For the number 0, the output should be 1 digit

2 Answers  


How are virtual functions implemented in c++?

0 Answers  






What are different types of polymorphism supported by C++

2 Answers   CA, GameLoft,


What is the difference between while and do while loop? Explain with examples.

0 Answers  


Write a corrected statement in c++ so that the statement will work properly. if (x = y) x = 2*z;

2 Answers  


What do you mean by translation unit in c++?

1 Answers  


Difference between delete and free.

0 Answers  


How do you declare A pointer to function which receives an int pointer and returns a float pointer

0 Answers  


What is the difference between a definition and a declaration?

0 Answers  


Categories