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 are the features of c languages?

0 Answers  


How to delete a node from linked list w/o using collectons?

0 Answers   Zycus Infotech,


create an SINGLE LINKED LISTS and reverse the data in the lists completely

3 Answers  


What are the rules for identifiers in c?

0 Answers  


List the variables are used for writing doubly linked list program.

0 Answers   Infosys, Wipro,






What is a program?

0 Answers  


WAP to find that given no is small or capital

3 Answers  


main() { char as[] = "\\0\0"; int i = 0; do{ switch( as[i++]) {case '\\' : printf("A"); break; case 0 : printf("B"); break; default : printf("C"); break; }} while(i<3); }

4 Answers   Vector, Vector India,


if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0

0 Answers  


What does the file stdio.h contain?

0 Answers  


What does. int *x[](); means ?

0 Answers   Wilco,


What are pointers? What are stacks and queues?

0 Answers   Hexaware,


Categories