當前位置:首頁 » 編程語言 » c語言讀取文件的函數

c語言讀取文件的函數

發布時間: 2024-12-26 23:20:40

A. C語言用fscanf()函數如何讀取文件全部內容

void read_txt(const char* Input, const char* Output){
FILE *fin = fopen(Input, "rb");//以二進制讀入
FILE *fout = fopen(Output, "w");
unsigned char ch1,ch2;
while(fscanf(fin, "%c%c", &ch1,ch2) != EOF){//直到文件結束
fprintf(fout, "%d%d", ch1,ch2);//以10進制輸出
}
}
int main(){
read_txt("D:/IN.txt","D:/OUT.txt");//txt文件目錄
return 0;
}
註:判斷文件結束處的語句:fscanf(fin, "%c%c", &ch1,ch2)。其中兩個%c之間不能加空格,否則讀到的二進制文件會不完整,比源文件少好多個位元組

熱點內容
安卓東西怎麼往蘋果上傳 發布:2024-12-27 13:27:36 瀏覽:129
圖片壓縮的app 發布:2024-12-27 13:25:35 瀏覽:106
設置對象存儲 發布:2024-12-27 13:25:24 瀏覽:707
現在玩lol要什麼配置 發布:2024-12-27 13:17:30 瀏覽:224
vs2012添加文件夾 發布:2024-12-27 13:01:27 瀏覽:899
c語言統計單詞數 發布:2024-12-27 12:58:09 瀏覽:57
手機服務密碼怎麼知道 發布:2024-12-27 12:51:44 瀏覽:465
oraclelinux使用 發布:2024-12-27 12:46:04 瀏覽:481
相冊密碼在哪裡開 發布:2024-12-27 12:40:29 瀏覽:270
壓縮解壓支持庫 發布:2024-12-27 12:31:46 瀏覽:712