Tagged Questions
4
votes
4answers
3k views
char array vs. char pointer
When receiving data through a socket using recv, I've noticed that, with:
char buffer[4];
memset(buffer, 0, 4);
recv(socket, buffer, 4, 0);
I receive
mesgx��
"mesg" being what I sent, with ...
0
votes
4answers
83 views
memset + whitespace + memcpy
How can i set a character array say of size 100 to whitespace and then copy 10 charters to that same string from other.
For example:
there is one char array a[100]
To do : set all of it to ...