CoolInterview.com - World's Largest Collection of Interview Questions
Send Free SMS
 Interview Questions  
 Our Services  


INTERVIEW QUESTIONS LANGUAGES C++ DETAILS
Question :
What is a memory leak? How can we avoid it?

Category C++ Interview Questions
Rating (5.0) By 21 users
Added on 7/19/2006
Views 1458
Rate it!
Answers:

A memory leak can be avoided by making sure that whatever memory has been dynamically allocated will be cleared after the use of the same. for example

int main()

{ char *myCharData[20];

for (int nLoop =0;nLoop < 20; ++nLoop) { myCharData[nLoop ] = new char[256];

strcpy(myCharData[nLoop],"SABITH");

.......

}

.........................

/*Some manipulations here using myCharData*/

/*Now here we have to clear the data. The place can vary according to ur program. This being a simple program,u can clear at the end*/

for(int nLoop =0;nLoop < 20; ++nLoop)
{

delete[] myCharData[nLoop ];

}

return 0;



memory leak - when we allocate memory dynamically and somehow lose the way to reach that memory.

ex:
void fun()
{
int *ptr = new int;
}

void main()
{
fun();
}

here the pointer ptr is local to the function fun(); which dies when control returns from the function.so we loose the way to reach that address, but the dynamically allocated memory would continue to remain allocated.

the easiest way to avoid memory leak is to place the pointers inside objects and let the objects manage them.



 Posted by: Monalisha Nayak    

Contact Monalisha Nayak  Contact Monalisha Nayak


If you have the better answer, then send it to us. We will display your answer after the approval.
Name :*
Email Id :*
Answer :*
Verification Code Code Image - Please contact webmaster if you have problems seeing this image code Not readable? Load New Code
Process Verification  Enter the above shown code:*
Inform me about updated answers to this question

   
Related Questions
View Answer
What is the difference between Function and Member function?



View Answer
In C++, what is a constructor,destructor?
View Answer
What is a class?
View Answer
What is an object?
View Answer
What is public, protected, private?
View Answer
What is the difference between class and structure?
View Answer
What is friend function?
View Answer
What are virtual functions?
View Answer
What is a scope resolution operator?
View Answer
What do you mean by inheritance?
View Answer

Please Note: We keep on updating better answers to this site. Subscribe to our newsletter to get notified when better answer is posted.

Notify me when better answer is posted!
Email:

View ALL C++ Interview Questions

User Options
Sponsored Links


Copyright ©2003-2010 CoolInterview.com, All Rights Reserved.
Privacy Policy | Terms and Conditions
Page URL: http://www.coolinterview.com/interview/6078/default.asp?cachecommand=bypass


Download Yahoo Messenger | Placement Papers| FREE SMS | ASP .Net Tutorial | Web Hosting | Free SMS | Dedicated Servers | Joke of the Day

1