溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

c語言中fwrite函數(shù)指的是什么

發(fā)布時間:2020-09-01 15:48:13 來源:億速云 閱讀:699 作者:小新 欄目:編程語言

小編給大家分享一下c語言中fwrite函數(shù)指的是什么,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

fwrite函數(shù)的一般調用形式是“fwrite(buffer,size,count,fp);”;其中,buffer是準備輸出的數(shù)據塊的起始地址,size是每個數(shù)據塊的字節(jié)數(shù),count用來指定每寫一次或輸出的數(shù)據塊,fp為文件指針。

c語言中fwrite函數(shù)指的是什么

fwrite() 是C 語言標準庫中的一個文件處理函數(shù),功能是向指定的文件中寫入若干數(shù)據塊,如成功執(zhí)行則返回實際寫入的數(shù)據塊數(shù)目。該函數(shù)以二進制形式對文件進行操作,不局限于文本文件。

語法:

fwrite(buffer,size,count,fp)

參數(shù):

  • buffer是準備輸出的數(shù)據塊的起始地址

  • size是每個數(shù)據塊的字節(jié)數(shù)

  • count用來指定每寫一次或輸出的數(shù)據塊

  • fp為文件指針。

函數(shù)返回寫入數(shù)據的個數(shù)。

注意

(1)寫操作fwrite()后必須關閉流fclose()。

(2)不關閉流的情況下,每次讀或寫數(shù)據后,文件指針都會指向下一個待寫或者讀數(shù)據位置的指針。

讀寫常用類型

(1)寫int數(shù)據到文件

#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);
  }
  //可以寫多個連續(xù)的數(shù)據(這里一次寫4個)
  fwrite (buffer , sizeof(int), 4, pFile);
  fclose (pFile);
  return 0;
}

(2)讀取int數(shù)據

#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;
}

執(zhí)行結果:

c語言中fwrite函數(shù)指的是什么

5.讀寫結構體數(shù)據

(1)寫結構體數(shù)據到文件

#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)讀結構體數(shù)據

#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)   //如果讀到數(shù)據,就顯示;否則退出
    {
        printf("%d %s\n",per.age,per.name);
    }
    return 0;
}

執(zhí)行結果:

c語言中fwrite函數(shù)指的是什么

以上是c語言中fwrite函數(shù)指的是什么的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業(yè)資訊頻道!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI