编程实现:从键盘输入一个字符串,然后将其以文本文件的形式存到磁盘文件中。文件名为file1.dat。
编程实现:打开上题生成的文件file1.dat,把文件中的字符读取出来显示在屏幕上,同时统计其中字符的个数打印输出。...
编程实现:打开上题生成的文件file1.dat,把文件中的字符读取出来显示在屏幕上,同时统计其中字符的个数打印输出。
展开
2个回答
展开全部
fwrite、fprintf、fputc等写文件函数都可以完成,而专用的字符串文件写入函数fputs更方便一些。举例如下(文件建立在当前目录下,名为123.txt):
//#include "stdafx.h"//If the vc++6.0, with this line.
#include "stdio.h"
#include "string.h"
#include "stdlib.h"
int main(void){
char s[70];
FILE *fp;
if((fp=fopen("123.txt","w"))==NULL){
printf("Open the file failure...\n");
exit(0);
}
while(1){
printf("Input a string...\ns=");
if(gets(s),strlen(s)<70)
break;
printf("Too long, redo: ");
}
fputs(s,fp);
fclose(fp);
printf("\n");
return 0;
}
//#include "stdafx.h"//If the vc++6.0, with this line.
#include "stdio.h"
#include "string.h"
#include "stdlib.h"
int main(void){
char s[70];
FILE *fp;
if((fp=fopen("123.txt","w"))==NULL){
printf("Open the file failure...\n");
exit(0);
}
while(1){
printf("Input a string...\ns=");
if(gets(s),strlen(s)<70)
break;
printf("Too long, redo: ");
}
fputs(s,fp);
fclose(fp);
printf("\n");
return 0;
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询