您好我有一个结构数组,我试图写入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);
}