Skip to content

Instantly share code, notes, and snippets.

@tterb
Created November 11, 2016 12:40
Show Gist options
  • Save tterb/96d25e58c0ca3c5b0bd874235016d388 to your computer and use it in GitHub Desktop.
Save tterb/96d25e58c0ca3c5b0bd874235016d388 to your computer and use it in GitHub Desktop.
Read from a file in C++
ifstream fileIn(filename.c_str());
if(!fileIn)
cerr << "ERROR: Unable to read from " << filename << endl;
string line;
while(getline(fileIn, line)) { // read line into a vector
input.push_back(line);
line.clear();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment