有時候在除錯程式需要進行大量資料的輸入輸出時,如何還是採用scanf()、printf()的方式進行,那就苦逼了。。。
萬一資料上有一些小改動,那就更苦逼了,所以還是用檔案來幫我們記錄下來,這樣在分析的時候才能更方便一些。
再說了,什麼地方都需要用到檔案,所以這個也是個重要的操作啊!
需要包含標頭檔案
來乙個小示例:
#include int main()
fclose(fp);
}
關於檔案操作函式的一些說明:
int fgetc(file *stream);//獲取乙個字元
int fgetpos(file *stream,fpos_t *pos);//返回當前檔案的位置
char* fgets(char *s,int n,file *stream);//從檔案流中讀取字串
file* fopen(const char *path,const char *mode);//開啟模式為r讀取,w寫入,a追加
int fscanf(file *stream,const char *format,...);//按照格式獲取資料
C語言檔案操作函式
1.fopen 開啟檔案 相關函式 open,fclose 表頭檔案 include 定義函式 file fopen const char path,const char mode 函式說明 引數path字串包含欲開啟的檔案路徑及檔名,引數mode字串則代表著流形態。mode有下列幾種形態字串 r ...
c語言檔案操作函式
1.fopen file fopen const char filename,const char mode filename檔案路徑 檔名,mode,檔案開啟方式。返回值,成功,返回檔案指標,失敗,返回null。mode的值 r rb 唯讀方式開啟乙個文字檔案,檔案不存在,報錯 w wb 寫方式開...
C語言檔案操作函式
1 int fgetc file fp 從檔案中讀乙個字元2 int fputc int c,file fp 向檔案寫入乙個字元 3 char fgets char s,int size,file fp 從檔案中讀取若干個字元4 int fputs const char str,file fp 把s...