zoukankan      html  css  js  c++  java
  • 文件随机读写操作

    #include<stdlib.h>
    #include
    <stdio.h>
    #include
    <conio.h>
    #define N 4
    extern unsigned _floatconvert;
    #pragma extref _floatconvert
    struct student
    {
      
    int num;
      
    char name[10];
      
    char sex;
      
    int age;
      
    float grade;
    }stu[N]
    ={{101,"Zhang",'M',19,95.6},
             {
    102,"Wang",'F',18,92.4},
             {
    103,"Zhao",'M',18,91.5},
             {
    104,"Li",'F',17,98.7}};
    void save()
    {
      FILE 
    *fp;
      
    int i;
      
    if((fp=fopen("d:\\student.dat","wb"))==NULL)
      {
        printf(
    "Cannot open this file!\n");
        
    return;
      }
      
    for(i=0;i<N;i++)
        
    if(fwrite(&stu[i],sizeof(struct student),1,fp)!=1)
          printf(
    "file write error!\n");
      fclose(fp);
    }
    void read()
    {
      FILE 
    *fp;
      
    int i;
      
    struct student stud[N];
      
    if((fp=fopen("d:\\student.dat","rb"))==NULL)
      {
        printf(
    "Cannot open the file!\n");
        
    return;
      }
      
    for(i=0;i<N;i++)
      {
        fread(
    &stud[i],sizeof(struct student),1,fp);
        printf(
    "%d\t%s\t%c\t%d\t%.1f\n",stud[i].num,stud[i].name,stud[i].sex,stud[i].age,stud[i].grade);
      }
      fclose(fp);
    }

    void main()
    {
      clrscr();
      save();
      read();
      getch();
    }
  • 相关阅读:
    发一注册表监控驱动代码
    Nikto
    在c#使用IOCP(完成端口)的简单示例
    C#中ref和out的使用小结
    Powerful x86/x64 Mini HookEngine
    C语言写的多线程下载器
    快速排序算法c#
    拓扑排序
    Dijkstra算法
    SRM 550 DIV2
  • 原文地址:https://www.cnblogs.com/qixin622/p/735721.html
Copyright © 2011-2022 走看看