c++ string with spaces code example
Example 1: how to make string get spaces c++
string s;
getline(cin,s);
Example 2: does cin read whitespace?
cin does not read white space.
Example 3: store string with spaces c++
std::string str;
std::getline( std::cin, str);