C语言fsetpos()函数:将文件指针定位在指定的位置上 您所在的位置:网站首页 c语言文件指针的移动 C语言fsetpos()函数:将文件指针定位在指定的位置上

C语言fsetpos()函数:将文件指针定位在指定的位置上

2023-03-26 05:30| 来源: 网络整理| 查看: 265

函数名: fsetpos

头文件:

函数原型: int fsetpos(FILE *stream,const fpos_t *pos);

功 能: 用于将文件指针定位在指定的位置上,fsetpos把与stream相联系的文件指针的位置保存在pos所指的地方。

参 数:FILE *stream     要定位的文件流

           const fpos_t *pos    类型fpos_t在stdio.h中定义为要定位的指针位 置 typeddf long fpos_t;

返回值:成功   返回0 ,失败   返回非0值。       

程序例:  打开文件并获取stream指针位置,将位置输出

#include #include int main(void){    char string[] = "www.dotcpp.com";    fpos_t filepos;    FILE *stream = fopen("test.txt", "w+");    fwrite(string, strlen(string), 1, stream); //将字符串写入文件流中    fgetpos(stream, &filepos);  //获取文件的指针位置    printf("The file pointer is at byte %ld\n", filepos);    fclose(stream);    return 0; }

 

运行结果

The file pointer is at byte 14



【本文地址】

公司简介

联系我们

今日新闻

    推荐新闻

    专题文章
      CopyRight 2018-2019 实验室设备网 版权所有