当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C语言 fsetpos()用法及代码示例


C 中的 fsetpos() 函数

原型:

    int fsetpos(FILE* filename, fpos_t *position);

参数:

    FILE* filename, fpos_t *position

返回类型:整型

函数的使用:

在文件处理中,我们通过 fsetpos() 函数将输入文件流指示器的位置设置在我们从 fgetpos() 得到的点上。每当我们需要修复文件中的文件指示器位置时,我们需要使用函数 fgetpos()。 fgetpos()函数的原型为:

    int fsetpos(FILE* filename, fpos_t *position);

这里,位置变量的数据类型必须是fpos_t类型。返回值为零表示操作成功,非零返回值表示操作失败。

C 中的 fsetpos() 示例

#include <stdio.h>
#include <stdlib.h>

int main()
{
    //Initialize the file pointer
    FILE* f;
    //Take a array of characters
    char ch[100];
    //Initialize the position variable
    fpos_t pos;

    //Create the file for write operation
    f = fopen("includehelp.txt", "w+");
    //Store the value of the function point indicator
    fgetpos(f, &pos);
    printf("Enter five strings\n");
    for (int i = 0; i < 4; i++) {
        //take the strings from the users
        scanf("%[^\n]", &ch);
        //write back to the file
        fputs(ch, f);
        //every time take a new line for the new entry string
        //except for last entry.Otherwise print the last line twice
        fputs("\n", f);
        //clear the stdin stream buffer
        //if we don't write this then after taking string
        //%[^\n] is waiting for the '\n' or white space
        fflush(stdin);
    }
    //take the strings from the users
    scanf("%[^\n]", &ch);
    fputs(ch, f);
    //set the indicator position to the initial position of the file
    fsetpos(f, &pos);
    printf("\n...............print the strings..............\n\n");
    while (!feof(f)) {
        //takes the first 100 character in the character array
        fgets(ch, 100, f);
        //and print the strings
        printf("%s", ch);
    }

    //close the file
    fclose(f);

    return 0;
}

输出

fsetpos example in c




相关用法


注:本文由纯净天空筛选整理自Souvik Saha大神的英文原创作品 fsetpos() function in C language with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。