What's the usefulness of the function memset()
?.
Definition: Sets the first num bytes of the block of memory pointed by ptr to the specified value (interpreted as an unsigned char).
Does this mean it hard codes a value in a memory address?
memset(&serv_addr,0,sizeof(serv_addr)
is the example that I'm trying to understand.
Can someone please explain in a VERY simplified way?
See Question&Answers more detail:os