If I read a binary file I can locate n-th line using:
fseek(fp, 4*sizeof(line),SEEK_SET);
But when reading txt file in C, like:
1 1 2.2
2 3 3.001
3 4 5
I can't ensure byte-size of a line because the double value can be 2.2 or 3.0001 or 5 in real cases. This time how can I locate n-th using fseek??
Thanks!