当我尝试编写应按特定字段(键)对文件中某些结构进行排序的代码时,我注意到我的函数无法正确读取键。我不知道我在做什么错。代码不完整。
constr
函数应该一次从二进制文件读取一个结构,然后仅保存varsta
数组。但是,如果我尝试查看获得的值,则这些值不是我提供的值。
这是我的代码:
#include <stdio.h>
#include <stdlib.h>
typedef struct
{
char nume[20];
char prenume[20];
float varsta;
} PERS;
typedef struct
{
float key;
int nr;
}INDEX;
int constr(FILE *f, INDEX tabl[])
{
int n;
n = ftell(f) / sizeof(PERS);
int i, depl = 0;
PERS p;
for (i = 0; i < n; i++)
{
fseek(f, depl, 0);
fread(&p, sizeof(p), 1, f);
tabl[i].key = p.varsta;
tabl[i].nr = i;
depl += sizeof(PERS);
}
return n;
}
int main()
{
FILE *f;
PERS pers[3];
if ((f = fopen("fis.txt", "wb+")) == NULL)
{
printf("Not ok");
exit(1);
}
int i;
for (i = 0; i < 3; i++)
{
scanf("%s%s%f", &pers[i].nume, &pers[i].prenume, &pers[i].varsta);
fwrite(&pers[i], sizeof(PERS), 1, f);
}
INDEX tabl[3];
int n = constr(f, tabl);
printf("%d", tabl[2].key); //only to check if the key is correct
fclose(f);
}
答案 0 :(得分:3)
key
字段是浮点数,但是您正在尝试打印整数。
将代码中的倒数第二行更改为
printf("%.2f\n", tabl[2].key);