其实在我使用最多的文件操作中,还是喜欢格式化IO控制的方式,简单方便易理解。

#include <stdio.h>
#include<stdlib.h>
int main()
{
FILE *fp;
const char *filename="F:/mytest/mytext.txt";
fp=fopen(filename,"w+");
char *text="今天是个好日子!\n你觉得呢?";
if(fp==NULL)
{
printf("open file failure!");
exit();
}
else
{
fprintf(fp,"%s",text);//用这个写入中文简直好用
}
fclose(fp); return();
}

文件操作之格式化IO-LMLPHP

看了fprintf函数之后,肯定不能忘了fscanf函数啊:

 #include <stdio.h>
#include<stdlib.h>
int main()
{
FILE *fp;
const char *filename="F:/mytest/mytext.txt";
fp=fopen(filename,"w+");
char *text="今天是个好日子!\n你觉得呢?";
if(fp==NULL)
{
printf("open file failure!");
exit();
}
else
{
fprintf(fp,"%s",text);//用这个写入中文简直好用
}
fclose(fp); fp=fopen(filename,"r+");
char buff[];
if(fp==NULL)
{
printf("open file failure!");
exit();
}
else
{
while(!feof(fp))//为什么要循环?因为我要读取多行,只一次的话只能读取一行
{
fscanf(fp,"%s",buff);
printf("%s\n",buff);
}
}
fclose(fp);
return();
}

文件操作之格式化IO-LMLPHP

05-11 13:41