Answers for "give input for c++ and print the string"

C++
23

input a string in c++

string fullName;
cout << "Type your full name: ";
getline (cin, fullName);
cout << "Your name is: " << fullName;
Posted by: Guest on May-04-2020

Code answers related to "give input for c++ and print the string"

Browse Popular Code Answers by Language