Skip to content

Instantly share code, notes, and snippets.

Created October 12, 2013 23:14
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 anonymous/6956045 to your computer and use it in GitHub Desktop.
Save anonymous/6956045 to your computer and use it in GitHub Desktop.
#include <iostream>
#include <string>
#include <fstream>
using namespace std;
int main()
{
// Variable Declarations
ifstream infile;
ofstream outfile;
int numStudents;
string filename;
string studentName;
string firstStudent;
string lastStudent;
// Ask user for name of file, open and test file.
cout << "Enter the name of the file with your student's names.\n";
cin >> filename;
cout << endl;
infile.open(filename.c_str());
// File is open for reading.
cout << "Reading file " << filename << endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment