Your Browser is not longer supported

Please use Google Chrome, Mozilla Firefox or Microsoft Edge to view the page correctly
Loading...

{{viewport.spaceProperty.prod}}

bzero - initialize memory with X‘00‘

&pagelevel(4)&pagelevel

Syntax

#include <strings.h>

void bzero(void *s, size_t n);

Description bzero() overwrites n bytes as of the address pointed to by s with X‘00‘.

Note

See also

Portable applications should use the memset() function instead of bzero().

memset(), strings.h.