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 is union in c?
Where define directive used?
Can you return null in c?
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
what will be maximum number of comparisons when number of elements are given?
Explain the advantages and disadvantages of macros.
What are the 4 types of unions?
Should a function contain a return statement if it does not return a value?
Which is better pointer or array?
What happens if header file is included twice?
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
How do you determine whether to use a stream function or a low-level function?
How can I open files mentioned on the command line, and parse option flags?
What is #include cctype?
What are the characteristics of arrays in c?