Getting the Current File Position

Getting the Current File Position

The standard function ftell() reports the current file pointer position. The file pointer is a numeric value that represents the current position in the file in the form of offset in bytes from the files beginning. ftell() is declared in as follows:

 long ftell(FILE *);

ftell() takes a FILE* argument and returns the current offset from its beginning. You can store the returned value and use it to reposition the file pointer later:

 FILE *data = fopen("payroll.dat", "r");// ... check status and read from the filelong current_pos = ftell(data); // store current position

Share the Post:
data observability

Data Observability Explained

Data is the lifeblood of any successful business, as it is the driving force behind critical decision-making, insight generation, and strategic development. However, due to its intricate nature, ensuring the

Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular