Sets a specified character a specified number of times at the beginning of a specified storage area.
void *memset (void *s, long c, size_t n);
s Pointer to storage area to set characters in
n Number of characters to be set
The memset function sets the character specified by c a number of times specified by n in the storage area specified by s.