上传者: tanhaijun2007
|
上传时间: 2020-01-03 11:35:40
|
文件大小: 285KB
|
文件类型: doc
【程序98】
1.程序分析:
2.程序源代码:
#include "stdio.h"
main()
{FILE *fp;
char str[100],filename[10];
int i=0;
if((fp=fopen("test","w"))==NULL)
{ printf("cannot open the file\n");
exit(0);}
printf("please input a string:\n");
gets(str);