void * memset

void * memset(void *, int, size_t)

The memset() function fills the first len bytes of the memory area pointed to by dest with the constant byte val.

Remember:

The memset() function returns a pointer to the memory area dest.