赞
踩
返回值:如果流成功关闭,fclose 返回 0,否则返回EOF(-1)。(如果流为NULL,而且程序可以继续执行,fclose设定error number给EINVAL,并返回EOF。)
int fclose(FILE *stream)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include<string.h>
#include<stdio.h>
int
main(
void
)
{
FILE
*fp = NULL;
const
char
*buf =
"0123456789"
;
fp =
fopen
(
"DUMMY.FIL"
,
"w"
);
/*创建一个包含10个字节的文件*/
fwrite
(buf,
strlen
(buf),1,fp);
/*将buf内容写入到文件中*/
fclose
(fp);
/*关闭文件*/
fp = NULL;
return
0;
}
|
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。