Set all bytes of a memory block to a given value #include <string.h> void *memset ( void *dest , int c , size_t n ); The memset( ) function sets each byte in a block of n bytes to the value c, beginning at the address in dest. The return value is the same as the pointer argument dest. ExampleSee the example for mbsinit( ) in this chapter. See Also |