Skip to content

Instantly share code, notes, and snippets.

@opavlyshak
Created February 14, 2013 08:57
Show Gist options
  • Save opavlyshak/4951436 to your computer and use it in GitHub Desktop.
Save opavlyshak/4951436 to your computer and use it in GitHub Desktop.
Read everything from stdin in C++
std::string text = "";
std::string line;
while (std::getline(std::cin, line))
{
text = text + line + "\r\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment