c文件读写

#include<stdio.h>#include<stdlib.h>#include<string.h>voidmain(){FILE*fp;charstr[100];... #include<stdio.h>
#include<stdlib.h>
#include<string.h>
void main()
{
FILE *fp;
char str[100];
int i=0;
if((fp=fopen("a1","w"))==NULL)
{printf("can not open file\n");
exit(0);
}
printf("dazi\n");
gets(str) ;
while(str[i]!='!')
{if(str[i]>='a'&&str[i]<='z')
str[i]=str[i]-32;
fputc(str[i],fp);
i++;
}
fclose(fp);
fp=fopen("a1","r");
fgets(str,strlen(str)+1,fp);
printf("%s\n",str);
fclose(fp);
getch();
}
这个是什么意思..解释一一下..刚学c文件那一章..书看不懂啊..
展开
 我来答
ryw12403
2010-06-11 · TA获得超过1899个赞
知道大有可为答主
回答量:2501
采纳率:0%
帮助的人:2106万
展开全部
if((fp=fopen("a1","w"))==NULL)
以写方式打开文件,如文件存在,会覆盖原文件,不存在,则建一个新文件。

fp=fopen("a1","r");
以读方式打开文件,文件不存在则读失败,
以这种方式打开的文件不能被修改,就象WINDOWS里一些系统文件,当你修改时会有提示
骨头爱读书
2010-06-11 · TA获得超过501个赞
知道答主
回答量:89
采纳率:0%
帮助的人:66.3万
展开全部
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
void main()
{
FILE *fp;//文件指针
char str[100];//字符串用来临时存储从文件读取的字符串
int i=0;
if((fp=fopen("a1","w"))==NULL)//打开文件
{printf("can not open file\n");
exit(0);
}
printf("dazi\n");
gets(str) ;//输入字符串
while(str[i]!='!')//将读取的字符串中的小写字符转换为大写,直到!结束并且间字符存入文件中
{if(str[i]>='a'&&str[i]<='z')
str[i]=str[i]-32;
fputc(str[i],fp);
i++;
}
fclose(fp);
fp=fopen("a1","r");
fgets(str,strlen(str)+1,fp);//从文件中取字符串存入str字符串中
printf("%s\n",str);//打印输出
fclose(fp);
getch();
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式