编一个程序,由键盘输入一个文件名,然后把从键盘输入的字符依次存放到该文件中,用!作为结束的标志.
发布网友
发布时间:2022-05-11 07:42
我来回答
共2个回答
热心网友
时间:2023-10-08 23:54
#include<stdio.h>
void main()
{
FILE *fp;
char *str;
char ch;
scanf("%s",str);
if((fp=fopen(str,"w"))==NULL)exit(0);
scanf(" %c",&ch);
while(ch!='!')
{
fputc(ch,fp);
ch=getchar();
}
fclose(fp);
}
热心网友
时间:2023-10-08 23:55
代码实现如下:
#include
"stdio.h"
#include
main()
{
file
*fp;
char
name[20],text[1024];
char
way[20]
=
"d:\\";//设置路径为d盘
printf("please
input
the
name
of
file:");
gets(name);
strcat(name,".txt");//给文件名加上后缀
strcat(way,name);//添加路径
fp
=
fopen(way,"w");
printf("please
input
the
text:");
gets(text);
fputs(text,fp);
fclose(fp);
}