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 |
What is new line escape sequence?
How can draw a box in cprogram without using graphics.h header file & using only one printf(); ?
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
What is d'n in c?
write a program to search for an element in a given array. If the array was found then display its position otherwise display appropriate message in c language
Write a program to print the prime numbers from 1 to 100?
‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .
when to use : in c program?
Is it better to use a macro or a function?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
Why do we need volatile in c?
given post order,in order construct the corresponding binary tree