entering a number 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: working with char and string c++
String and Char