Skip to content

Instantly share code, notes, and snippets.

@kkAyataka
Last active October 12, 2015 05:06
Show Gist options
  • Save kkAyataka/47be8c02c05b3644c69f to your computer and use it in GitHub Desktop.
Save kkAyataka/47be8c02c05b3644c69f to your computer and use it in GitHub Desktop.
Read file.
#include <fstream>
int main () {
std::ifstream fs("/file");
const std::string data((std::istreambuf_iterator<char>(fs)), std::istreambuf_iterator<char>());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment