| http://www.w3.org/ns/prov#value | - Heap is a place where memory is allocated for variables created dynamically(i.e)malloc ,calloc.The memory allocated for them should be freed using free function.Though a heap of memory is allocated inside a function using malloc,it doesnot get freed from memory (as local variables inside a functon)when it goes out of scope .So it must be periodically freed using free function.
|