Skip to content

Instantly share code, notes, and snippets.

@lakpahana
Created August 3, 2023 03:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lakpahana/518767ae0496a6ca316ff9d9775c8c72 to your computer and use it in GitHub Desktop.
Save lakpahana/518767ae0496a6ca316ff9d9775c8c72 to your computer and use it in GitHub Desktop.
How To Read A STRING Line In C++
#include <string>
#include <sstream>
string line;
getline(cin, line);
istringstream iss(line);
string word;
while (iss >> word)
{
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment