首页  >  文章  >  后端开发  >  在C/C++中,fseek()函数用于在文件中移动文件指针的位置

在C/C++中,fseek()函数用于在文件中移动文件指针的位置

PHPz
PHPz转载
2023-09-02 15:57:131353浏览

在C/C++中,fseek()函数用于在文件中移动文件指针的位置

fseek()在C语言中用于将文件指针移动到特定位置。偏移量和流是指针的目标,它们在函数参数中给出。如果成功,它返回零。如果不成功,它返回非零值。

以下是C语言中fseek()的语法:

int fseek(FILE *stream, long int offset, int whence)

这里是在fseek()中使用的参数:

  • stream − 这是用于标识流的指针。

  • offset − 这是从位置开始的字节数。

  • whence − 这是偏移量添加的位置。

whence由以下常量之一指定。

  • SEEK_END − 文件末尾。

  • SEEK_SET − 文件开头。

  • SEEK_CUR − 文件指针的当前位置。

这是C语言中fseek()的一个示例。

假设我们有一个名为“demo.txt”的文件,其中包含以下内容:

This is demo text!
This is demo text!
This is demo text!
This is demo text!

现在让我们看看代码。

示例

#include<stdio.h>
void main() {
   FILE *f;
   f = fopen("demo.txt", "r");
   if(f == NULL) {
      printf("\n Can&#39;t open file or file doesn&#39;t exist.");
      exit(0);
   }
   fseek(f, 0, SEEK_END);
   printf("The size of file : %ld bytes", ftell(f));
   getch();
}

输出

The size of file : 78 bytes

以上是在C/C++中,fseek()函数用于在文件中移动文件指针的位置的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文转载于:tutorialspoint.com。如有侵权,请联系admin@php.cn删除