Простые типы / Строки

#include <iostream>
using namespace std;


// \t Insert a tab.
// \n Insert a newline.
// \r Insert a carriage return.
// \' or ' Insert a single quote.
// \" Insert a double quote.
// \\ Insert a backslash character.

string str = "She said \"Hello!\" to me.";
//str is "She said "Hello!" to me."

cout << "str: " << str;