|
memsetfunction
<cstring> void * memset ( void * ptr, int value, size_t num ); Fill block of memory Sets the first num bytes of the block of memory pointed by ptr to the specified value (interpreted as an unsigned char).Parameters
Return Valueptr is returned.Example
Output:
See also
|