void * memset(void *dest, int c, size_t n)
Copies the value c into each of the first n characters of the object pointed to by dest.
void * calloc(size_t num, size_t size)
Allocates memory for an array of given number objects of size and initializes all bytes in the alloca...