编程实现:从键盘输入一个字符串,然后将其以文本文件的形式存到磁盘文件中。文件名为file1.dat。
发布网友
发布时间:2022-04-29 10:37
我来回答
共2个回答
热心网友
时间:2023-10-03 03:40
1、首先打开电脑的编辑软件。然后创建编辑项目。
2、然后创建文件指针和字符型char。再读取文件内容。
3、然后用for语句进行接受数据。再用getchar语句接受键盘的输入。
4、然后用foput函数。再将数据写入到文件。
5、然后用fclose函数关闭文件。再返回数值。
6、然后运行程序,输入数值。再打开文件,就可以发现键盘输入的东西,写入到文件。
热心网友
时间:2023-10-03 03:40
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;
}