Skip to content

Instantly share code, notes, and snippets.

@lniwn
Created December 4, 2017 04:54
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 lniwn/39c00cadbf07cf16c5f8dd7f084a7673 to your computer and use it in GitHub Desktop.
Save lniwn/39c00cadbf07cf16c5f8dd7f084a7673 to your computer and use it in GitHub Desktop.
Read file-contents into a string in C++
std::ifstream ifs("myfile.txt");
std::string content( (std::istreambuf_iterator<char>(ifs) ),
(std::istreambuf_iterator<char>() ) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment