Function used to free the memory allocated by calloc() - free();
Q. C programming: What function should be used to free the memory allocated by calloc() ?- Published on 25 Jun 15a. dealloc();
b. malloc(variable_name, 0)
c. free();
d. memalloc(variable_name, 0)
ANSWER: free();
The free() function deallocates the memory which was previously allocated by the call to alloc, malloc or calloc