mallocAllocates memory | |||||||
Arguments
Return ValueA pointer to the allocated memory block is returned. NULL is returned if the allocation failed.ExplanationA block of s bytes is allocated from the heap.NotesAt the time of user program activation heap memory is defined as follows:
See Alsocalloc(), realloc(), free() |