What is Memory leakage ?
Answers were Sorted based on User's Feedback
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 |
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 |
say the following declaration is correct nr not. int b=a,n=0;
What are the scope of static variables?
How is a macro different from a function?
How can I remove the trailing spaces from a string?
What are the types of variables in c?
How the processor registers can be used in C ?
can we have joblib in a proc ?
Why c is called a middle level language?
What does p mean in physics?
C language questions for civil engineering
I need a sort of an approximate strcmp routine?
What is the difference between typeof(foo) and myFoo.GetType()?