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;
}
运行效果: 支持
页:
[1]