Answers for "how to get a sentance as input"

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 "how to get a sentance as input"

Browse Popular Code Answers by Language