Copies null characters into byte strings.
Format
#include <strings.h>
void bzero (void *string, size_t length);
1 – Arguments
string
Specifies the byte string into which you want to copy null
characters.
length
Specifies the length (in bytes) of the string.
2 – Description
The bzero function copies null characters ('\0') into the byte
string pointed to by string for length bytes. If length is 0
(zero), then no bytes are copied.