1.C写入文件函数
#include<stdio.h>
main()
{
FILE *f;
f=fopen("wenzhang.txt","w");
fprintf(f,"this is a c program !");
fclose(f);
}
2.读取文件函数
/*要求 "文章.txt" 文件在c程序同一目录中。*/
#include <stdio.h>
void main()
{
FILE *fp;
int i;
char c;
fp=fopen("文章.txt","r");
if(fp==NULL)
{
printf("文件不存在!\n");exit(0);
}
while((c=fgetc(fp))!=EOF) //文件位置指针是否遇到文件简结束符
{
putchar(c);
}
printf("\n");
fclose(fp);
}