hi i have a unknown string in c++ containing "\n" "\t" etc.
say;
string unknown1="\n\t\n\t\n\n\n\n\n";
now I want to print
"\n\t\n\t\n\n\n\n\n"
to the screen explcitly other than a bunch of empty spaces.... how should I do that? remember that I don't know what is in unknown1...