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


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


C 中的 freopen() 函数

原型:

    FILE* freopen(const char *str, const char *mode, FILE *stream);

参数:

    const char *str, const char *mode, FILE *stream

返回类型:文件*

函数的使用:

函数 freopen() 的原型为:

    FILE* freopen(const char *str, const char *mode, FILE *stream);

这个freopen() function将现有流打开到另一个文件中。在此过程中清除文件结束和错误标志。名为 str 的文件及其操作模式将其打开到名为 stream.txt 的文件流中。这freopen() function行为类似于fopen()函数。在下面的输出中,我们可以看到函数的工作。

C 中的 freopen() 示例

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

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

    //Create the file for write operation
    f = fopen("includehelp.txt", "w");

    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
        fflush(stdin);
    }

    //%[^\n] is waiting for the '\n' or white space
    //take the strings from the users
    scanf("%[^\n]", &ch);
    fputs(ch, f);

    //reopen the file for read operation
    fp = freopen("includehelp.txt", "r", fp);

    printf("File content is--\n");
    printf("\n...............print the strings..............\n\n");
    while (!feof(fp)) {
        //takes the first 100 character in the character array
        fgets(ch, 100, fp);
        //and print the strings
        printf("%s", ch);
    }
 
    //close the files
    fclose(fp);
    fclose(f);

    return 0;
}

输出

freopen example in c




相关用法


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