cppreference.com > Standard C Memory > calloc
calloc
Syntax:
  #include <stdlib.h>
  void *calloc( size_t num, size_t size );

The calloc() function returns a pointer to space for an array of num objects, each of size size. calloc() returns NULL if there is an error.