Answers for "taking a line of input in C++"

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 "taking a line of input in C++"

Browse Popular Code Answers by Language