cin with strings 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
Example 3: get data from terminal c++
int i;
cout << "Please enter an integer value: ";
cin >> i;