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
What is the significance of scope resolution operator?
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
int far *near * p; means
Write a code of a general series where the next element is the sum of last k terms.
What is #include stdio h?
int i=10; printf("%d %d %d", i, i=20, i);
Write a program which returns the first non repetitive character in the string?
How many parameters should a function have?
Write a program of prime number using recursion.
What is the size of enum in c?
What is the use of printf() and scanf() functions?
What is a file descriptor in c?
What is variable in c example?
Describe newline escape sequence with a sample program?
Is using exit() the same as using return?