what are the various memory handling mechanisms in C ?
Answer Posted / henry
malloc(), calloc(), ralloc() are all for allocating memory.
free() is for freeing memory.
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
What are identifiers in c?
Why is c so popular?
What are keywords c?
Explain what is the benefit of using const for declaring constants?
Explain the difference between #include "..." And #include <...> In c?
Why is a semicolon (;) put at the end of every program statement?
which type of aspect you want from the student.
What is the best organizational structure?
How do you determine whether to use a stream function or a low-level function?
What is ## preprocessor operator in c?
What are different types of variables in c?
What is the easiest sorting method to use?
Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1
What is adt in c programming?
Is using exit() the same as using return?