newbie here

Newbie Member
8Dec2007,01:40   #1
m_kk's Avatar
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.
Go4Expert Founder
8Dec2007,10:09   #2
shabbir's Avatar
The statement populates the buffer with the values of url, client_ip, clientName, method in the format specified in the quotes.
Newbie Member
9Dec2007,03:59   #3
m_kk's Avatar
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?