C語言文件讀寫實例

//編程完成讀出文件sfile.txt中的內容,反序寫入另外一個文件dfile.txt中去。編程 #include<stdio.h>get #define BUFFSIZE 5000 void main() { FILE * sfp,* dfp; int i; char buf[BUFFSIZE]; if((sfp=fopen("C:\\sfile.txt","r"))==NULL)       
相關文章
相關標籤/搜索