pick out the odd one out of the following
a.malloc()
b.calloc()
c.free()
d.realloc()
Answer Posted / manishsoni
here malloc(),calloc(),realloc)() are the memory allocation
function after allocation of memory free is used to freed
the memory which is allocated by the above function.
so the free is odd term.
| Is This Answer Correct ? | 13 Yes | 3 No |
Post New Answer View All Answers
What is ambagious result in C? explain with an example.
What is extern variable in c with example?
What is meant by realloc()?
How can I check whether a file exists? I want to warn the user if a requested input file is missing.
What is the difference between NULL and NUL?
Can static variables be declared in a header file?
What does the format %10.2 mean when included in a printf statement?
List some of the static data structures in C?
What are the advantages of the functions?
What are the advantages of using new operator as compared to the function malloc ()?
What is the Purpose of 'extern' keyword in a function declaration?
What is difference between structure and union in c?
What is the use of pragma in embedded c?
Which of these functions is safer to use : fgets(), gets()? Why?
What is derived datatype in c?