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 |
do ne body have any idea about the salary for the we r going to have interview. yup .. u got it right ..i m talking abt NIC.
What does %c do in c?
Given a single Linked list with lakhs of nodes and length unknown how do you optimally delete the nth element from the list?
What is the most efficient way to store flag values?
write a program that eliminates the value of mathematical constant e by using the formula e=1+1/1!+1/2!+1/3!+
main() { static char *s[]={"black","white","yellow","voilet"}; char **ptr[]={s+3,s+2,s+1,s}, ***p; p=ptr; **++p; printf("%s",*--*++p+3); }
What is maximum size of array in c?
What are identifiers in c?
how can i calculate mean,median,mode by using c program
Why doesn't the code "a[i] = i++;" work?
how memory store byte
Can you please explain the difference between malloc() and calloc() function?