//檔案文字。
#include #include #include #include #pragma warning(disable:4996)
int main()
//fgetc 當讀取失敗的時候或者遇到檔案結束的時候,都會返回eof
//標準c i/o讀取檔案迴圈。
while((c = fgetc(fp)) != eof)
printf("\n");
//判斷是什麼原因結束的
if(ferror(fp))
else if(feof(fp))
fclose(fp);
system("pause");
return 0;
}
//二進位制檔案;
#include #include #include #pragma warning(disable:4996)
#define size 5
int main()
; double b[size] = ;
int n = 0;
size_t ret_code = 0;
//必須採用二進位制模式;
file *fp = fopen("test.bin", "wb");
//寫double的陣列;
fwrite(a, sizeof(*a),size,fp);
fclose(fp);
fp = fopen("test.bin","rb");
ret_code = fread( b, sizeof(*b), size, fp);
if(ret_code == size)
putchar('\n');
} //error handling
else
else if (ferror(fp))
}fclose(fp);
system("pause");
return 0;
}
c語言檔案操作
rt null ch fgetc fp while ch eof fclose fp 本 例程式的功能是從檔案中逐個讀取字元,在螢幕上顯示。程式定義了檔案指標fp,以讀文字檔案方式開啟檔案 d jrzh example ex1 1.c 並使fp指向該檔案。如開啟檔案出錯,給出提示並退出程式。程式第1...
C語言檔案操作
1.首先要理解幾個概念 檔案 按一定規則儲存在磁碟上的資料集合。檔名 能唯一標識某個磁碟檔案的字串。形式 碟符 路徑 檔名.副檔名 二進位制檔案 資料以二進位制形式在儲存在磁碟上。裝置檔案 輸入 輸出裝置 標準輸入檔案 鍵盤 標準輸出檔案 標準錯誤輸出檔案 顯示器 檔案型指標 c語言是通過名為fil...
C語言檔案操作
1,兩種檔案訪問方式 輸入,輸出方式 順序訪問 直接訪問 2,資料的兩種存放形式 文字檔案 二進位制檔案 3.檔案指標 定義檔案型別指標變數的一般形式 file 指標變數名 例如 file fp1,fp2 4.開啟檔案 在使用檔案之前,需開啟檔案.在c裡使用fopen函式開啟檔案.格式為 fopen...