[求助]问一道自动换行程序
把1.TXT的内容转换到2.txt要求1.TXT的文本每读10个字符换行直到全文读完然后转换到2.TXT中
我就是换行写不出来,哪位大哥哥,救救小妹啊~~~
原来你的程序目的是这样子,根本无须用到fwrite() #include <stdio.h> #include <conio.h>
int main() { FILE *fin=NULL,*fout=NULL; int counter=0; fin=fopen("1.txt","r"); fout=fopen("2.txt","w"); if(!fin) { puts("Cannot open file 1.txt"); return 0; } while(!feof(fin)) { if(counter == 10) { fputc('\n',fout); counter=0; continue; } fputc(fgetc(fin),fout); counter++; } puts("Process complete!\n"); fclose(fin); fclose(fout); getch(); return 0; }
[此贴子已经被作者于2005-9-4 9:42:28编辑过]