Hello, I am completey new to c++ and programming too. Couls come one explain me what does this statement do sprintf(buffer, "%s %s/- %s %s\r\n", url, client_ip, clientName, method); url,client_ip, clientName and method are variables.
The statement populates the buffer with the values of url, client_ip, clientName, method in the format specified in the quotes.
Thank you. does it mean they will be stored in the format url client_ip-clientName method?. also i know \n is new line what does \r specify?