Sending several lines of data through socketI realised why you asked those questions. That \0 character was intended for internal control, not f...
Sending several lines of data through socketHmm... That's quite obvious but i didn't see it. I will test it. Thank you very much and sorry for a...
A question about pointersIf you ever program data structures in c, you will see that you can't do much without pointers.
Sending several lines of data through socketThe actual size of the string stored in the buffer is 142, but the array has one extra byte for the ...
Sending several lines of data through socketIts not magic. The size of the buffer is 143. [code]char buffer[143];[/code] The receiver receives ...