callocAllocates memory | |||||
Arguments
Return ValueA pointer to the allocated memory block is returned. NULL is returned if the allocation failed.ExplanationAn n * s byte block is allocated from the heap. The allocated memory is cleared.See Alsomalloc(), realloc(), free() |