fwrite函數的一般呼叫形式是「fwrite(buffer,size,count,fp);」;其中,buffer是準備輸出的資料塊的起始位址,size是每個資料塊的位元組數,count用來指定每寫一次或輸出的資料塊,fp為檔案指標。
fwrite() 是C 語言標準庫中的一個檔案處理函數,功能是在指定的檔案中寫入若干資料區塊,如成功執行則傳回實際寫入的資料塊數目。此函數以二進位形式對文件進行操作,不局限於文字檔。
語法:
fwrite(buffer,size,count,fp)
參數:
注意
(1)寫入操作fwrite()後必須關閉流fclose()。 (2)不關閉流的情況下,每次讀取或寫入資料後,檔案指標都會指向下一個待寫或讀取資料位置的指標。讀寫常用型別
(1)寫int資料到檔案#include <stdio.h> #include <stdlib.h> int main () { FILE * pFile; int buffer[] = {1, 2, 3, 4}; if((pFile = fopen ("myfile.txt", "wb"))==NULL) { printf("cant open the file"); exit(0); } //可以写多个连续的数据(这里一次写4个) fwrite (buffer , sizeof(int), 4, pFile); fclose (pFile); return 0; }(2)讀取int資料
#include <stdio.h> #include <stdlib.h> int main () { FILE * fp; int buffer[4]; if((fp=fopen("myfile.txt","rb"))==NULL) { printf("cant open the file"); exit(0); } if(fread(buffer,sizeof(int),4,fp)!=4) //可以一次读取 { printf("file read error\n"); exit(0); } for(int i=0;i<4;i++) printf("%d\n",buffer[i]); return 0; }執行結果:
5.讀寫結構體資料
(1)寫入結構體資料到檔案
#include <stdio.h> #include <string.h> #include <stdlib.h> typedef struct{ int age; char name[30]; }people; int main () { FILE * pFile; int i; people per[3]; per[0].age=20;strcpy(per[0].name,"li"); per[1].age=18;strcpy(per[1].name,"wang"); per[2].age=21;strcpy(per[2].name,"zhang"); if((pFile = fopen ("myfile.txt", "wb"))==NULL) { printf("cant open the file"); exit(0); } for(i=0;i<3;i++) { if(fwrite(&per[i],sizeof(people),1,pFile)!=1) printf("file write error\n"); } fclose (pFile); return 0; }(2)讀取結構體資料
#include <stdio.h> #include <string.h> #include <stdlib.h> typedef struct{ int age; char name[30]; }people; int main () { FILE * fp; people per; if((fp=fopen("myfile.txt","rb"))==NULL) { printf("cant open the file"); exit(0); } while(fread(&per,sizeof(people),1,fp)==1) //如果读到数据,就显示;否则退出 { printf("%d %s\n",per.age,per.name); } return 0; }執行結果: #相關推薦:
以上是fwrite函數的一般呼叫形式是什麼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!