I already included <"stdio.h">
using this function
bzero(&server, length);
but the compiler says
error: 'bzero' was not declared in this scope
`
bzero()
is not part of the standard library, it belongs to POSIX.
It's actually deprecated (note the LEGACY in the manual) now, so consider using memset()
instead.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With