C语言教程-C中的fseek()函数
fseek()函数用于将文件指针设置到指定的偏移量处。它用于在文件中的指定位置写入数据。
语法:
int fseek(FILE stream, long int offset, int whence)
fseek()函数中使用了3个常量,用于设置whence参数: SEEK_SET、SEEK_CUR和SEEK_END。
示例:
#include <stdio.h>
void main(){
FILE *fp;
fp = fopen("myfile.txt","w+");
fputs("This is javatpoint", fp);
fseek( fp, 7, SEEK_SET );
fputs("sonoo jaiswal", fp);
fclose(fp);
}
myfile.txt
This is sonoo jaiswal