how to read in a string in c++ code example
Example 1: input a string in c++
string fullName;
cout << "Type your full name: ";
getline (cin, fullName);
cout << "Your name is: " << fullName;
Example 2: c++ reading string
#include <iostream>
#include <string>
string str;
getline(cin, str);
//str contains line