1. When I read the socket connection, the book will use the memset or bzero function to zero the address structure
bzero (& server_addr,sizeof (server_addr));
server_addr.sin_family = AF_INET;
inet_pton (AF_INET, ip, & server_addr.sin_addr);
server_addr.sin_port = htons (port);
but removing the first sentence will have no effect. I want to know what the meaning of this zero is
.