将结构数组写入bin文件

时间:2017-12-17 04:27:11

标签: c arrays structure fread bin

您好我有一个结构数组,我试图写入bin文件。但是我只能得到这个名字'要显示的数据。正确的。其余的都是难以辨认的垃圾。

 struct employee
    {
       char name[15];
        float sal, rate, raise, newsal;
    }e;
  

这是我保存到bin文件的savebin函数。

void savebin(struct employee e[], int n)
    {
        FILE *f;
       f=fopen("c:\\cfiles\\employee2.text", "wb");
        fwrite(&e, sizeof(struct employee),n,f);
        fclose(f);
    }

0 个答案:

没有答案