What is Memory leakage ?

Answers were Sorted based on User's Feedback



What is Memory leakage ?..

Answer / deepak mundhada

when the memory gets allocated using dynamic memory function
like malloc(),realloc()and if we don't free memory using
free() function then this area can't be used by any user.so
this is called Memory leakage.

Is This Answer Correct ?    12 Yes 0 No

What is Memory leakage ?..

Answer / sathees kumar

when the memory gets allocated using dynamic memory function
like malloc(),realloc()and if we don't free memory using
free() function then this area can't be used by any user.so
this is called Memory leakage

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More C Interview Questions

what is the differnce between AF_INET and PF_INET?

5 Answers   Systems Plus, Wipro,


Given an array of length N containing integers between 1 and N, determine if it contains any duplicates.

3 Answers   SilverKey,


Why is void main used?

0 Answers  


What are examples of structures?

0 Answers  


GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)

0 Answers  






find largest of 3 no

8 Answers  


1 1 1 1 2 1 1 3 3 1 1 4 6 4 1

3 Answers  


Write a C program to read the internal test marks of 25 students in a class and show the number of students who have scored more than 50% in the test. Make necessary assumptions.

1 Answers  


What are the similarities between c and c++?

0 Answers  


What is meaning of "Void main" in C Language.

24 Answers   Ford, GU, HCL, IBIBS, JUW, TCS,


what does static variable mean?

0 Answers   TCS,


C program code int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15

6 Answers   TCS, Wipro,


Categories