i was just playing around with the web server and found that I did not know one thing.
When I declare a variable like this:
char buf[1000];
--
Now when I put this code in:
e = 0;
buf[e] = "\\";
--
Will
buf[e]
have the string "\\" ?
And if I do something like this
buf[e] = 0;
Will it erase the string already in buf[e] , which is "\\", or will it leave this string in there ?
Please, that is a kind of urgent, and I know that is just a little newbie answer for you:p
