The code is as follow :
The Code:
#include <iostream>
#include <fstream>
using namespace std;
int main(void)
{
int id;
char name[50];
ifstream myfile("savingaccount.txt"); //open the file
myfile >> id;
cout << myfile.tellg(); //return 16? but not 7 or 8
cout << id ;
return 0;
}
The File Content:
1800567 Ho Rui Jang 21 Female Malaysian 012-4998192 20 , Lorong 13 , Taman Patani Janam Melaka Sungai Dulong
The Problem :
1.) I expect the tellg() to either return 7 or 8 since the first line 1800567 which is 7 digits so the stream pointer should be placed after this number and before the string "Ho Rui Jang", but tellg() returns 16. Why is it so?
