C ftell()

C ftell() function:

To get the current file position, ftell() function is used in C.

Syntax:

ftell(FILE *stream)

Example:

#include <stdio.h>  
void main(){  
FILE *f;  
 
f = fopen("file.txt","w+");  
fputs("Hello C..", f);  
fclose(f);  
 
f = fopen("file.txt","r");  
fseek(f, 0, SEEK_END);  
 
int size = ftell(f);  
fclose(f);  
printf("Size of file.txt is: %d bytes", size);  
}

Output

Size of file.txt is: 9 bytes
Please follow and like us:
Content Protection by DMCA.com