Answer Posted / sujith
Memory leak is nothing but u create huge chunk of memory
with a malloc or any such mechanism and u never free that
manually which make the available free main memory in the
system to minimum. this may even lead to system crashing.
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
When should the const modifier be used?
What are local variables c?
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
What is calloc()?
Differentiate fundamental data types and derived data types in C.
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
What is difference between structure and union?
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
What does the c in ctime mean?
Sir i need notes for structure,functions,pointers in c language can you help me please
What is header file definition?
What is external variable in c?
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
What is the use of typedef in structure in c?
What is the translation phases used in c language?