Answers for "string input in c++ with space"

C++
4

c++ reading string

#include <iostream>
#include <string>
string str;
getline(cin, str);
//str contains line
Posted by: Guest on January-26-2020

Code answers related to "string input in c++ with space"

Browse Popular Code Answers by Language