Answers for "c++ read in a string from a user with spaces"

C++
-1

read string with spaces in c++

#include <string>
string s;
getline(cin, s);
Posted by: Guest on June-08-2021

Code answers related to "c++ read in a string from a user with spaces"

Browse Popular Code Answers by Language