博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
fread和fwrite函数功能
阅读量:5067 次
发布时间:2019-06-12

本文共 1809 字,大约阅读时间需要 6 分钟。

fread和fwrite函数功能

  用来读写一个数据块。

一般调用形式

  fread(buffer,size,count,fp);

  fwrite(buffer,size,count,fp);

说明

  (1)buffer:是一个指针,对fread来说,它是读入数据的存放地址。对fwrite来说,是要输出数据的地址。

  (2)size:要读写的字节数;

  (3)count:要进行读写多少个size字节的数据项;

  (4)fp:文件型指针。

注意:1 完成次写操(fwrite())作后必须关闭流(fclose());

           2 完成一次读操作(fread())后,如果没有关闭流(fclose()),则指针(FILE * fp)自动向后移动前一次读写的长度,不关闭流继续下一次读操作则接着上次的输出继续输出;

           3 fprintf() : 按格式输入到流,其原型是int fprintf(FILE *stream, const char *format[, argument, ...]);其用法和printf()相同,不过不是写到控制台,而是写到流罢了。注意的是返回值为此次操作写入到文件的字节数。如int c = fprintf(fp, "%s %s %d %f", str1,str2, a, b) ;str1:10字节;str2: 10字节;a:2字节;b:8字节,c为33,因为写入时不同的数据间自动加入一个空格。

文件使用之后一定要关闭,否则将不能正确显示内容.fwrite:读入两个学生信息然后用fwrite存入文件

fread:用fread从文件中读出学生信息。

fwrite.c

#include <stdio.h>

#define SIZE 2
struct student_type
{
char name[10];
int num;
int age;
char addr[10];
}stud[SIZE];
void save()
{
FILE *fp;
int i;
if((fp=fopen("stu_list","wb"))==NULL)
{
  printf("cant open the file");
  exit(0);
}
for(i=0;i<SIZE;i++)
{
   if(fwrite(&stud[i],sizeof(struct student_type),1,fp)!=1)
    printf("file write error\n");
}
fclose(fp);
}
main()
{
int i;
for(i=0;i<SIZE;i++)
{
   scanf("%s%d%d%s",&stud[i].name,&stud[i].num,&stud[i].age,&stud[i].addr);
   save();
}
for(i=0;i<SIZE;i++)
{
   printf("%s,%d,%d",stud[i].name,stud[i].num,stud[i].age,stud[i].addr);
}
}

fread.c

#include <stdio.h>

#define SIZE 2
struct student_type
{
char name[10];
int num;
int age;
char addr[10];
}stud[SIZE];
void read()
{
FILE *fp;
int i;
if((fp=fopen("stu_list","rb"))==NULL)
{
  printf("cant open the file");
  exit(0);
}
for(i=0;i<SIZE;i++)
{
   if(fread(&stud[i],sizeof(struct student_type),1,fp)!=1)
    printf("file write error\n");
}
fclose(fp);
}
main()
{

int i;

read();
for(i=0;i<SIZE;i++)
{
   printf("%s,%d,%d,%s",stud[i].name,stud[i].num,stud[i].age,stud[i].addr);
   printf("\n");
}
}

转载于:https://www.cnblogs.com/to-creat/p/5643900.html

你可能感兴趣的文章
C# 调用Word(PrintOut) 直接打印,出现“第一节的页边距设于可打印区域之外,是否继续”...
查看>>
ML in Action 决策树
查看>>
[转]linux下TCP连接占用的资源
查看>>
Python爬虫(五)
查看>>
DAO、Service、Controller及View层级结构梳理
查看>>
EL表达式的作用与限制条件
查看>>
Echart---多项柱状图-2D/H5
查看>>
window 配置wnmp(转下整理 ,全)
查看>>
Spring 3.2.* MVC通过Ajax获取JSON数据报406错误
查看>>
使用NW.js封装微信公众号菜单编辑器为桌面应用
查看>>
VS2013和VS2015中MVC 区域路由匹配顺序相反
查看>>
POJ 3278&&2049&&3083
查看>>
POJ 1789&&2485&&1258&&3026
查看>>
电工助手 V1.4
查看>>
Raspberry学习——raspberry pi 3 截图及查看
查看>>
apscheduler 绿色版
查看>>
Hadoop集群环境搭建
查看>>
VBS常用函数及功能
查看>>
delphi 画 带箭头的线
查看>>
08个人总结
查看>>