C语言(fseek(f,0,SEEK_SET)函数案例详解)

这篇文章主要介绍了C语言fseek(f,0,SEEK_SET)函数案例详解,本篇文章通过简要的案例,讲解了该项技术的了解与使用,以下就是详细内容,需要的朋友可以参考下

C语言,fseek(f,0,SEEK_SET)函数案例详解,久久派带你了解更多相关信息。

fseek(f,0,SEEK_SET);

意思是把文件指针指向文件的开头

fseek

函数名: fseek

功 能: 重定位流上的文件指针

用 法: int fseek(FILE *stream, long offset, int fromwhere);

描 述: 函数设置文件指针stream的位置。如果执行成功,stream将指向以fromwhere为基准,偏移offset个字节的位置。如果执行失败(比如offset超过文件自身大小),则不改变stream指向的位置。

返回值: 成功,返回0,否则返回其他值。

fseek position the file position pointer for the file referenced by stream to the byte location calculated by offset.

程序例:

#include <stdio.h>  long filesize(FILE *stream);  int main(void)  {  FILE *stream;  stream = fopen(\"MYFILE.TXT\", \"w+\");  fprintf(stream, \"This is a test\");  printf(\"Filesize of MYFILE.TXT is %ld bytes\\n\", filesize(stream));  fclose(stream);  return 0;  }  long filesize(FILE *stream)  {	  long curpos, length;	  curpos = ftell(stream);	  fseek(stream, 0L, SEEK_END); 	  length = ftell(stream);	  fseek(stream, curpos, SEEK_SET);  	return length;  }  int fseek( FILE *stream, long offset, int origin );

第一个参数stream为文件指针

第二个参数offset为偏移量,整数表示正向偏移,负数表示负向偏移

第三个参数origin设定从文件的哪里开始偏移,可能取值为:SEEK_CUR、 SEEK_END 或 SEEK_SET

SEEK_SET: 文件开头

SEEK_CUR: 当前位置

SEEK_END: 文件结尾

其中SEEK_SET,SEEK_CUR和SEEK_END和依次为0,1和2.

简言之:

fseek(fp,100L,0);把fp指针移动到离文件开头100字节处;
fseek(fp,100L,1);把fp指针移动到离文件当前位置100字节处;
fseek(fp,100L,2);把fp指针退回到离文件结尾100字节处。

使用实例:

#include<stdio.h>#defineN5typedefstructstudent{longsno;charname[10];floatscore[3];}STU; voidfun(char*filename,STUn){FILE*fp;fp=fopen(filename,\"rb+\");fseek(fp,-1L*sizeof(STU),SEEK_END);fwrite(&n,sizeof(STU),1,fp);fclose(fp);} voidmain()/*修改覆盖最后一个学生数据*/{STUt[N]={{10001,\"MaChao\",91,92,77},{10002,\"CaoKai\",75,60,88},{10003,\"LiSi\",85,70,78},{10004,\"FangFang\",90,82,87},{10005,\"ZhangSan\",95,80,88}};STUn={10006,\"ZhaoSi\",55,70,68},ss[N];inti,j;FILE*fp;fp=fopen(\"student.dat\",\"wb\");fwrite(t,sizeof(STU),N,fp);fclose(fp);fp=fopen(\"student.dat\",\"rb\");fread(ss,sizeof(STU),N,fp);fclose(fp);printf(\"\\nTheoriginaldata:\\n\\n\");for(j=0;j<N;j++){printf(\"\\nNo:%ldName:%-8sScores:\",ss[j].sno,ss[j].name);for(i=0;i<3;i++)printf(\"%6.2f\",ss[j].score[i]);printf(\"\\n\");}fun(\"student.dat\",n);printf(\"\\nThedataaftermodifing:\\n\\n\");fp=fopen(\"student.dat\",\"rb\");fread(ss,sizeof(STU),N,fp);fclose(fp);for(j=0;j<N;j++){printf(\"\\nNo:%ldName:%-8sScores:\",ss[j].sno,ss[j].name);for(i=0;i<3;i++)printf(\"%6.2f\",ss[j].score[i]);printf(\"\\n\");}}

到此这篇关于C语言 fseek(f,0,SEEK_SET)函数案例详解的文章就介绍到这了,更多相关C语言 fseek(f,0,SEEK_SET)函数内容请搜索趣讯吧以前的文章或继续浏览下面的相关文章希望大家以后多多支持趣讯吧!

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,请发送邮件至 55@qq.com 举报,一经查实,本站将立刻删除。转转请注明出处:https://www.szhjjp.com/n/17357.html

(0)
nan
上一篇 2021-08-26
下一篇 2021-08-26

相关推荐

发表回复

登录后才能评论