编一个程序,从键盘输人200个字符,存入名为“d:\f1.txt"的文本文件中。
#include #include main() {FILE*fp; int i; char c; if((fp=fopen("d:\f1.txt","W"))==NULL) {prinff("can not open file!\n"); exit(0); } for(i=0;i<200;i++)/*循环处理200个字符*/ {c=getchar(); fputc(c,fp);/*将c中字符写到fp指向的文件中*/ } fclose(fp); }