目录
fopen
⽂件在读写之前应该先打开⽂件,在使⽤结束之后应该关闭⽂件。
其中最主要的是
r w a
fclose
有fopen就有fclose
例子
#include <stdio.h>
int main ()
{
FILE * pFile;
//打开⽂件
pFile = fopen ("myfile.txt","w");
//⽂件操作
if (pFile!=NULL)
{
fputs ("fopen example",pFile);
//关闭⽂件
fclose (pFile);
}
return 0;
}