漩涡鸣人 发表于 2014-9-29 16:02:19

C标准库之输入输出函数——_fcloseall

本帖最后由 漩涡鸣人 于 2014-9-29 16:03 编辑

功能:_fcloseall函数用于关闭所有文件
函数原型:int _fcloseall(void);
参数:无返回值:关闭文件的个数
要求:
函数需要的头文件
_fcloseall<stdio.h>

举例:#include <stdio.h>

int main(void)
{
    int num = 0;
    fopen("time.txt", "w+");//读写方式创建并打开文件time.txt
    fopen("data.txt", "w+");//读写方式创建并打开文件data.txt

    num = _fcloseall();//通过这个函数可以关闭所有打开的文件
    printf("_fcloseall函数:关闭文件%d个\n", num);
    return 0;
}
运行效果:

大个的糖果 发表于 2014-11-1 08:01:13

vbirds 发表于 2015-1-8 09:17:16

支持
页: [1]
查看完整版本: C标准库之输入输出函数——_fcloseall