How to read certain line from .txt file
How can I go about reading the last ten lines from a .txt file?
This is what I have so far
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
#include <iostream>
#include<string>
#include<fstream>
using namespace std;
//Main execution begins here
int main()
{
//Declare the variables
string fileName;
string line;
cout<<"Enter a file to read"<<endl;
//Input the filename
cin>>fileName;
fstream inFile;
//reading from a file
inFile.open(fileName, ios::in);
int count = 0;
while (!inFile.eof()){
while(getline(inFile,line))
{
cout << line << endl;
count++;
}
}
inFile.close();
cout << count;
system("PAUSE");
}
|
Topic archived. No new replies allowed.