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 |
Why we write conio h in c?
develop algorithms to add polynomials (i) in one variable
Write a c program to build a heap method using Pointer to function and pointer to structure ?
0 Answers MAHINDRA, Protech, Sivan Tech,
Is c programming hard?
Can you subtract pointers from each other? Why would you?
program to print upper & lower triangle of a matrix
What is 1d array in c?
program for following output using for loop? 1 2 3 4 5 2 3 4 5 3 4 5 4 5 5
Can a pointer be volatile in c?
program to find which character is occured more times in a string and how many times it has occured? for example in the sentence "i love india" the output should be i & 3.
write a C program : To find out the number of identical words in two files . the file name should be taken as command line argument .
A array contains dissimilar element how can we count, and A array contains dissimilar element how can we store in another array with out repetition.