Memset memory operations [] [] memcpy

 

 

void *memset(void *s, int c, unsigned long n);

The variable s pointer points to the first n bytes of a memory cell with "integer" c Alternatively, note that c is an int. s is type void * pointer variable, it can be initialized to any type of data.

 

Guess you like

Origin www.cnblogs.com/focusonoutput/p/12446088.html