函数名:close
头文件:<io.h>
函数原型: int close(int handle);
功能: 用于关闭由open()函数所打开的文件
参数:int handle 打开文件时所返回的文件句柄
返回值:成功 返回0 ,失败 返回-1
程序例:将open函数打开的文件关闭,并输出提示
#include<stdio.h> #include<io.h> #include<fcntl.h> int main(void){ int fd=open("D:\\a.txt",O_RDONLY+O_CREAT); if(fd==-1){ printf("can not open the file\n"); return 1; } char *str=(close(fd)==0)?"successful close":"fail close"; printf("%s\n",str); return 0; }
运行结果:
successful close
本文固定URL:https://www.dotcpp.com/course/452