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 happens if a header file is included twice?
How can I check whether a file exists? I want to warn the user if a requested input file is missing.
What will be the outcome of the following conditional statement if the value of variable s is 10?
Where can I get an ansi-compatible lint?
write a c program for swapping two strings using pointer
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
Explain what are the different file extensions involved when programming in c?
What is the purpose of type declarations?
What is the auto keyword good for?
What is the translation phases used in c language?
Can we change the value of static variable in c?
Explain the priority queues?
What is the sizeof () a pointer?
program to convert a integer to string in c language'
What is d'n in c?