更新时间:2022-08-25 17:37
C 库函数int fclose(FILE *stream)关闭流 stream。刷新所有的缓冲区。
下面是 fclose() 函数的声明。
int fclose(FILE *stream)
如果流成功关闭,则该方法返回零。如果失败,则返回 EOF。
下面的实例演示了 fclose() 函数的用法。
让我们编译并运行上面的程序,这将创建一个文件file.txt,然后写入下面的文本行,最后使用fclose()函数关闭文件。
int fclose(FILE *stream);
可在fclose(fp)后使用
if(fclose())
{
}
来判断是否成功关闭文件,关闭失败,则fclose返回“-1”并输出出错原因。