C Getline String Code Example


Example: getline cpp

//getline allows for multi word input including spaces ex. "Jim Barens" #include <iostream> #include <string>  int main()  {   string namePerson{};     // creating string   getline(cin, namePerson);// using getline for user input   std::cout << namePerson; // output string namePerson }

Comments

Popular posts from this blog

Are Regular VACUUM ANALYZE Still Recommended Under 9.1?

Can Feynman Diagrams Be Used To Represent Any Perturbation Theory?