在C語言中,檔案操作都是由函式庫函數來完成的。
推薦:《c語言教學》
要讀取一個txt文件,首先要使用文件開啟函數fopen()。
fopen函數用來開啟一個文件,其呼叫的一般形式為: 文件指標名稱=fopen(文件名,使用檔案方式) 其中,「檔案指標名」必須是被說明為FILE 類型的指標變量,“文件名”是被打開文件的文件名。 「使用文件方式」是指文件的類型和操作要求。 「檔案名稱」是字串常數或字串陣列。
其次,使用檔案讀寫函數讀取檔案。
在C語言中提供了多種檔案讀寫的函數:
·字元讀寫函數 :fgetc和fputc
·字串讀寫函數:fgets和fputs
·資料塊讀寫函數:freed和fwrite
·格式化讀寫函數:fscanf和fprinf
最後,在檔案讀取結束要使用檔案關閉函數fclose()關閉檔案。
實例:
#include <stdio.h> #include <stdlib.h> #include <assert.h> typedef struct student{ char name[32]; int no; char sex[16]; float score; } stu; int main(int argc, char* argv[]) { //打开文件 FILE * r=fopen("A.txt","r"); assert(r!=NULL); FILE * w=fopen("B.txt","w"); assert(w!=NULL); //读写文件 stu a[128]; int i=0; while(fscanf(r,"%s%d%s%f",a[i].name,&a[i].no,a[i].sex,&a[i].score)!=EOF) { printf("%s\t%d\t%s\t%g\n",a[i].name,a[i].no,a[i].sex,a[i].score);//输出到显示器屏幕 fprintf(w,"%s\t%d\t%s\t%g\n",a[i].name,a[i].no,a[i].sex,a[i].score);//输出到文件B.txt i++; } //关闭文件 fclose(r); fclose(w); system("pause"); return 0; }
編譯運行後的結果如下:
#更多程式相關內容,請關注php中文網程式設計入門欄位!
以上是c語言如何讀取txt檔案內容?的詳細內容。更多資訊請關注PHP中文網其他相關文章!