I have a file with great amount of numbers,each number is separated by a space.
Such like: 124 1212 5 654 74231 ...
How can I quickly locate the Nth number in this file?
I think fseek() may not work because it's measured by bytes,and I can get the Nth number by:
int i;
for (i=0;i!=N-1;++i) fscanf(somefile,"%d",&variable);
But I guess there might be some way more efficient?