getting strings with spaces with cin c++ 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.
string s;
getline(cin,s);
cin does not read white space.