函数名: ftell
头文件:<stdio.h>
函数原型: long ftell(FILE *stream);
功 能: 偏移量是从文件开始算起的字节数。
参 数: FILE *stream 需要返回指针的文件流
返回值:成功 返回当前文件指针的位置 ,出错 返回-1L,是长整数的-1值。
程序例: 打开文件,在讲字符串输入文件流中,并输出文件的长度
#include<stdio.h>intmain(void){FILE*stream=fopen(test.txt,w+);if(!stream){printf(cannotopenthefilen);return0;}fprintf(stream,www.dotcpp.com);printf(Thefilepointerisatbyte%ldn,ftell(stream));fclose(stream);return0;}
运行结果
Thefilepointerisatbyte14