I have a file,named f1.txt, whose contents are 75 15 85 35 60 50 45 70
Here is my code to read each integer and print them.
#include <iostream>
#include <fstream>
using namespace std;
int main(int argc, char *argv[])
{
fstream file("f1.txt", ios::in);
int i;
while(!file.eof()) {
file >> i;
cout << i << " ";
}
return 0;
}
But when I compiled and run the program, the output is 75 15 85 35 60 50 45 70 70. Why it is reading the last integer twice ? Any clues ?