C语言 fread()与fwrite()函数说明与示例

1.作用

  读写文件数据块。

2.函数原型

  (1)size_t fread ( void * ptr, size_t size, size_t count, FILE * stream );

     其中,ptr:指向保存结果的指针;size:每个数据类型的大小;count:数据的个数;stream:文件指针

     函数返回读取数据的个数。

  (2)size_t fwrite ( const void * ptr, size_t size, size_t count, FILE * stream );

       其中,ptr:指向保存数据的指针;size:每个数据类型的大小;count:数据的个数;stream:文件指针

     函数返回写入数据的个数。

3.注意

  (1)写操作fwrite()后必须关闭流fclose()。

  (2)不关闭流的情况下,每次读或写数据后,文件指针都会指向下一个待写或者读数据位置的指针。

4.读写常用类型

  (1)写int数据到文件

 1 #include <stdio.h>
 2 #include <stdlib.h>
 3 int main ()
 4 {
 5   FILE * pFile;
 6   int buffer[] = {1, 2, 3, 4};
 7   if((pFile = fopen ("myfile.txt", "wb"))==NULL)
 8   {
 9       printf("cant open the file");
10       exit(0);
11   }
12   //可以写多个连续的数据(这里一次写4个)
13   fwrite (buffer , sizeof(int), 4, pFile);
14   fclose (pFile);
15   return 0;
16 }

View Code

  (2)读取int数据

 1 #include <stdio.h>
 2 #include <stdlib.h>
 3
 4 int main () {
 5     FILE * fp;
 6     int buffer[4];
 7     if((fp=fopen("myfile.txt","rb"))==NULL)
 8     {
 9       printf("cant open the file");
10       exit(0);
11     }
12     if(fread(buffer,sizeof(int),4,fp)!=4)   //可以一次读取
13     {
14         printf("file read error\n");
15         exit(0);
16     }
17
18     for(int i=0;i<4;i++)
19         printf("%d\n",buffer[i]);
20     return 0;
21 }

View Code

 执行结果:

5.读写结构体数据

  (1)写结构体数据到文件

 1 #include <stdio.h>
 2 #include <string.h>
 3 #include <stdlib.h>
 4 typedef struct{
 5     int age;
 6     char name[30];
 7 }people;
 8
 9 int main ()
10 {
11     FILE * pFile;
12     int i;
13     people per[3];
14     per[0].age=20;strcpy(per[0].name,"li");
15     per[1].age=18;strcpy(per[1].name,"wang");
16     per[2].age=21;strcpy(per[2].name,"zhang");
17
18     if((pFile = fopen ("myfile.txt", "wb"))==NULL)
19     {
20         printf("cant open the file");
21         exit(0);
22     }
23
24     for(i=0;i<3;i++)
25     {
26         if(fwrite(&per[i],sizeof(people),1,pFile)!=1)
27             printf("file write error\n");
28     }
29     fclose (pFile);
30     return 0;
31 }

View Code

  (2)读结构体数据

 1 #include <stdio.h>
 2 #include <string.h>
 3 #include <stdlib.h>
 4 typedef struct{
 5     int age;
 6     char name[30];
 7 }people;
 8
 9 int main () {
10     FILE * fp;
11     people per;
12     if((fp=fopen("myfile.txt","rb"))==NULL)
13     {
14       printf("cant open the file");
15       exit(0);
16     }
17
18     while(fread(&per,sizeof(people),1,fp)==1)   //如果读到数据,就显示;否则退出
19     {
20         printf("%d %s\n",per.age,per.name);
21     }
22     return 0;
23 }

View Code

执行结果:

 

时间: 2024-10-30 16:59:19

C语言 fread()与fwrite()函数说明与示例的相关文章

C语言之没有main函数的helloworld示例_C 语言

几乎所有程序员的第一堂课都是学习helloworld程序,下面我们先来重温一下经典的C语言helloworl 复制代码 代码如下: /* hello.c */  #include <stdio.h>    int main()  {      printf("hello world!\n");      return 0;  }  这是一个简单得不能再单的程序,但它包含有一个程序最重要的部分,那就是我们在几乎所有代码中都能看到的main函数,我们编译成可执行文件并查看符号表

fopen()、fwrite()、fread()函数使用说明与示例

fopen()函数: 1.作用: 在C语言中fopen()函数用于打开指定路径的文件,获取指向该文件的指针. 2.函数原型:   [cpp] view plain copy     FILE * fopen(const char * path,const char * mode);       -- path: 文件路径,如:"F:\Visual Stdio 2012\test.txt"       -- mode: 文件打开方式,例如:                "r&

c语言-C语言,文件操作问题,fwrite函数的使用

问题描述 C语言,文件操作问题,fwrite函数的使用 #include <stdio.h> #include <stdlib.h> #pragma warning(disable:4996)// #define NULL 0 #define SIZE 2 struct student { char name[10]; int num; int age; }stud[SIZE]; void save() { FILE *fp; int i; if((fp=fopen("s

c-C语言中的fread与fwrite问题

问题描述 C语言中的fread与fwrite问题 我自己自定义了一个结构体 typedef struct histgramData { CString picPath;//图片路径 CvHistogram value;//图片的直方图特征 }CHistogramData; 然后使用fwrite将其写入文件 FILE *fp; if((fp=fopen("histogram.dat","a+b"))==NULL)//以追加方式打开二进制文件 {return false

c语言-C语言选择法排序函数的实现问题

问题描述 C语言选择法排序函数的实现问题 我在看C语言程序设计是遇到一个问题,用选择法对数组中的5个整数按由小到大排序 #include int main() { void sort(int array[],int n); int a[5],i; printf("Please input 5 numbers:n"); for(i=0;i<5;i++) scanf("%d",&a[i]); sort(a,5); printf("the sort

C语言中字符串常用函数strcat与strcpy的用法介绍

以下是对C语言中字符串常用函数strcat与strcpy的使用方法进行了详细的分析介绍,需要的朋友可以参考下   strcpy原型声明:extern char *strcpy(char* dest, const char *src);头文件:#include <string.h>功能:把从src地址开始且含有NULL结束符的字符串复制到以dest开始的地址空间说明:src和dest所指内存区域不可以重叠且dest必须有足够的空间来容纳src的字符串. 返回指向dest的指针.函数实现: 复制代

关于c语言的问题,函数定义时候为什么可以不加形参的类型

问题描述 关于c语言的问题,函数定义时候为什么可以不加形参的类型 比如这段代码 void rkt1f(t,y,n,d) int n; double t,y[],d[]; {t=t; n=n; d[0]=y[1]; d[1]=-y[0]; d[2]=-y[2]; return; } 可以运行,这是用Runge-Kutta计算的一个函数,求教学,这块为什么会对啊 解决方案 C语言允许你在函数体的头部定义参数,而不写在括号里面.语法就是这么规定的,但是这种写法不推荐 解决方案二: 表示没见过,类型加上

c语言-C语言,如何在一个函数内部,获取这个函数入口点的地址?

问题描述 C语言,如何在一个函数内部,获取这个函数入口点的地址? 1C # Git@OSC 的 Android 和 iOS 客户端全面开源 include #include void show(void* p) { printf(""%pn""p); } int main() { show(&show); show(show); return 0; } Output: 1 2 0x8048480 0x8048480 解决方案 答案处处有.函数名称就是入口地址

Go语言里的new函数用法分析_Golang

本文实例讲述了Go语言里的new函数用法.分享给大家供大家参考.具体如下: 表达式 new(T) 分配了一个零初始化的 T 值,并返回指向它的指针. var t *T = new(T) 或 t := new(T) 代码如下: 复制代码 代码如下: package main import "fmt" type Vertex struct {     X, Y int } func main() {     v := new(Vertex)     fmt.Println(v)     v