Function (Path Standard C Header / stdlib.h)
calloc
void* calloc(int numOfArray, size_t arrayElemSize);
allocate memory from heap space, and set all to 0, use in array creation
Parameters
int numOfArray
array length
size_t arrayElemSize
array element size