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 |
what is the differnce between AF_INET and PF_INET?
5 Answers Systems Plus, Wipro,
Given an array of length N containing integers between 1 and N, determine if it contains any duplicates.
Why is void main used?
What are examples of structures?
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
find largest of 3 no
1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
Write a C program to read the internal test marks of 25 students in a class and show the number of students who have scored more than 50% in the test. Make necessary assumptions.
What are the similarities between c and c++?
What is meaning of "Void main" in C Language.
24 Answers Ford, GU, HCL, IBIBS, JUW, TCS,
what does static variable mean?
C program code int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15