<<<Index>>>

C++ String



std::string text; // text data
cin >> text; // formatted input
std::getline( std::cin, text ); // get line of text
cout << text; // write text
<<<Index>>>