Function memset

Top 

Declaration:

void memset(void s[], int c, int n, int index=0);

Description

The memset function sets the first n bytes of the object, specified by s, equal to the value transferred to c (and converted into the unsigned char).

Returned value

None.