C语言fseek()函数:用来设定文件的当前读写位置
头文件:
#include <stdio.h>
定义函数:
int fseek(FILE * stream, long offset, int whence);
函数功能:把与fp有关的文件位置指针放到一个指定位置。
其中stream为已打开的文件指针,
offset位移量,
whence为起始点。
“起始点”不能任意设定,它只能是在stdio.h中定义的三个符号常量之一:
返回值:当调用成功时则返回0, 若有错误则返回-1, errno 会存放错误代码.
fseek(fp,20,SEEK_SET); //意思是把fp文件读写位置指针从文件开始后移20个字节.