Menu
   ❮   
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY CYBERSECURITY DATA SCIENCE
     ❯   

C stdio ftell() Function

❮ C stdio Library


Example

Show the current position in a file:

FILE *fptr;
fptr = fopen("filename.txt", "a");

int position = ftell(fptr);
printf("%d", position);

fclose(fptr);

Definition and Usage

The ftell() function returns the value of position indicator. This is the position in the file where the next read or write operation will be done.

The ftell() function is defined in the <stdio.h> header file.


Syntax

ftell(FILE * fptr);

Parameter Values

Parameter Description
fptr Required. A file pointer, usually created by the fopen() function.

Technical Details

Returns: An int value representing the current value of the position indicator.

❮ C stdio Library