calloc()
Syntax:
#include <stdlib.h>
Description:
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.
Related Topics:
free(), malloc(), realloc()
#include <stdlib.h>