Answer Posted / 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 |
Post New Answer View All Answers
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
Why is c called a mid-level programming language?
Differentiate between functions getch() and getche().
Which header file should you include if you are to develop a function which can accept variable number of arguments?
What is the most efficient way to count the number of bits which are set in an integer?
What is call by value in c?
What are the various types of control structures in programming?
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
What do you know about the use of bit field?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
How do I copy files?
Explain what is meant by high-order and low-order bytes?
Write a code to determine the total number of stops an elevator would take to serve N number of people.
Why do we use return in c?