hi, i like to know what are the avilable escape charators for MS visual c++ 6.0. i tryed to use just \n but it did not worked. i was trying to get a new line in dos output.
#include <iostream>
int main ()
{
std::cout << "\tsome tabbed text ended with \\n \n";
std::cout << "begin of a new line" << std::endl;
std::cout << "a new line with std::endl" << std::endl;
return 0;
}
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.