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


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


C 中的 fclose() 函数

原型:

    int fclose(FILE *filename);

参数:

    FILE *filename

返回类型:整型

函数的使用:

当我们在程序中处理多个文件并且在操作结束后,如果我们不关闭文件,则会发生一些不需要的修改(如修改数据、破坏文件、丢失数据等)。所以在我们的文件处理操作结束后,我们必须关闭打开的文件,fclose() 函数用于关闭打开的文件。这个函数的原型是int fclose(FILE *filename);

如果 fclose() 函数返回值为零则成功执行,否则返回值 EOF 表示发生错误。当文件从磁盘永久删除时,fclose() 函数失败。

C 中的 fclose() 示例

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

int main()
{
    FILE* f;
    char str[100];

    //Check the existence of that file
    if ((f = fopen("includehelp.txt", "r")) == NULL) {
        printf("Cannot open the file...");
        //if not exist program is terminated
        exit(1);
    }

    printf("File content is--\n");
    //print the strings until EOF is encountered
    while (!feof(f)) {
        fgets(str, 100, f);
        //print the string
        printf("%s", str);
    }

    //close the opened file
    fclose(f);

    return 0;
}

输出

fclose example in c



相关用法


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