how to take input string data type 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: how to print string data type in c++
printf("%s\n",someString.c_str());