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 scope rule in c?
what is a constant pointer in C
how to write a c program to print list of fruits in alpabetical order?
How is a structure member accessed?
stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
Can you tell me how to check whether a linked list is circular?
What are unions in c?
What are the features of c language?
How can I manipulate strings of multibyte characters?
What are nested functions in c?
What is the use of gets and puts?
What is typedef?
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
What does %2f mean in c?
In a byte, what is the maximum decimal number that you can accommodate?