C语言中的fseek()用于将文件指针移动到特定位置。偏移量和流是指针的目的地,在函数参数中给出。如果成功,则返回零。如果不成功,则返回非零值。
这是fseek()
C语言的语法,
int fseek(FILE *stream, long int offset, int whence)
这是在 fseek()
stream-这是标识流的指针。
offset-这是从位置开始的字节数。
whence-这是添加偏移量的位置。
由以下常量之一指定。
SEEK_END-文件结尾。
SEEK_SET-文件的开始。
SEEK_CUR-文件指针的当前位置。
这是fseek()
C语言的示例。
假设我们具有以下内容的“ 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't open file or file doesn'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