The functions to manage heap memory which are included in the directory #include <stdlib.h> are: malloc(): void * malloc (size_t size); As we see from the prototype of the malloc function that we have to pass the number of bytes required as parameter to the malloc function and the function returns the starting address of the […]