文件,本程序用于创造一个文件,或者搜索一个文件,然后输入字符串到其中,并进行读取
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#define nu NULL
int main()
{
FILE *fp;char string[128];
char ch;char a[128],b[128];
printf("本程序用于创造一个文件,或者搜索一个文件,然后输入字符串到其中,并进行读取\n");
printf("需要加后缀\n");
printf("请输入输入文件名:\n");
gets(a);
printf("请开始输入你的内容:\n");
if((fp=fopen(a,"w"))==nu)
{
printf("cannot open this file\n");
exit(0);
}
while(strlen(gets(string))>0)
{
fputs(string,fp);
fputs("\n",fp);
}
fclose(fp);
printf("接下来开始读取文件中的内容:\n");
if((fp=fopen(a,"r"))==nu)
{
printf("cannot open this file\n");
exit(0);
}
while(fgets(string,129,fp)!=nu)
printf("%s",string);
fclose(fp);
}