Write a C++ program to use escape sequences
Output new line, tab, double quote
#include <iostream> using namespace std; int main() //from w ww . j ava 2 s . c o m { cout << "\n\n\t I" "\n\n\t\t \"book2s.com\"" "\n\n\t\t\t \\\\" "\n\n\t\t AND" "\n\n\t /tutorial/" << endl; return 0; }