C Programming - Memory Allocation - Discussion

Discussion Forum : Memory Allocation - General Questions (Q.No. 2)
2.
What function should be used to free the memory allocated by calloc() ?
dealloc();
malloc(variable_name, 0)
free();
memalloc(variable_name, 0)
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
22 comments Page 3 of 3.

MalliReddy said:   10 years ago
In C editor goto alloc.h you will find answer to this question and other memory management func:'s.
(2)

Anonmyous said:   10 years ago
@N. Gayathridevi.

In c++ editor goto help and look for alloc.h.

In that header file examples are given.
(2)


Post your comments here:

Your comments will be displayed after verification.