<<<
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
std::string
std::string stores and manipulates text data
#include
<string>
<<<
Index
>>>