how to enter a string in cpp 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: working with char and string c++
String and Char