c - 给出分段错误的 Fscanf



我花了几个小时试图找出这段代码出了什么问题。我尝试使用将代码放在 feof while 循环中,以及将 fscanf 从循环中取出,以便它只运行一次。即使文件中的数据有效,这些更改仍会引起分段错误。

struct student *temp = (ident*) malloc (sizeof(ident));
while(fscanf(file1, "%s %s %d %f", temp->fname, temp->lname, temp->id, temp->gpa) != EOF) {
    if(head == NULL)
        head = temp;
    else {
        struct student *traverse = head;
        while(traverse->next != NULL)
            traverse = traverse->next;
        traverse->next = temp;
        printf("added");
    }
}

以下是结构:

struct student{
char fname[256];
char lname[256];
unsigned int id;
float gpa;
struct student *next;
};

文本文件上的行示例:

约翰·多伊 1 3.6

约翰·史密斯 3 2.4

您必须传递指向值的指针,而不是传递到fscanf的值(请注意 &temp->id&temp->gpa 中的&符号;char[] -type lnamefname 会自动衰减到指针(:

while(fscanf(file1, "%s %s %d %f", temp->fname, temp->lname, &temp->id, &temp->gpa) != EOF) {

相关内容

  • 没有找到相关文章

最新更新