Im reading a book, and im just wondering, what does /n do? Does it just make the source coding look nice, or is there something else it does which I dont see?
Thanks
aspdaddy
8:09 pm on Mar 21, 2003 (gmt 0)
Its a newline character in c++ IO stream :)
cout << "hello World\n"
jatar_k
8:10 pm on Mar 21, 2003 (gmt 0)
it is a newline character \n
if you are outputting html it helps code formatting when you view source through the browser.