What is memory leak in c?
Answer / Ankur Kumar Dixit
'Memory leak' in C refers to a situation where memory allocated with 'malloc', 'calloc', or 'realloc' functions, among others, is not properly de-allocated using the 'free' function, leading to an excessive use of memory.
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain c preprocessor?
What is the advantage of an array over individual variables?
What is Bitwise Operator and how it works?
What is the scope of static variable in c?
Is register a keyword in c?
What is return type in c?
Write a program of advanced Fibonacci series.
How can I manipulate strings of multibyte characters?
How to throw some light on the b tree?
If the static variable is declared as global, will it be same as extern?
What is a scope resolution operator in c?
How can a program be made to print the line number where an error occurs?