函数名:close
头文件:<io.h>
函数原型: int close(int handle);
功能: 用于关闭由open()函数所打开的文件
参数:int handle 打开文件时所返回的文件句柄
返回值:成功 返回0 ,失败 返回-1
程序例:将open函数打开的文件关闭,并输出提示
#include<stdio.h>#include<io.h>#include<fcntl.h>intmain(void){intfd=open(D:\a.txt,O_RDONLY+O_CREAT);if(fd==-1){printf(cannotopenthefilen);return1;}char*str=(close(fd)==0)?successfulclose:failclose;printf(%sn,str);return0;}
运行结果:
successfulclose