0

I am making linked list(s) based on the user input as the following:

How Many employees? 4

Now, each one would have firstname lastname rate and zipcode, with a linked list I am trying to take these inputs and doing a for loop based on the number of records, but I am not doing it right obviously :

    struct records {
        char first[20];
        char last[20];
        float rate;
        int zip;
        struct node* next;
    };
    void main()
    {
        int i,n;
        printf("Please indicate the number of records : ");
        scanf("%d",&n);
        struct records *head,*conductor;
        head=(struct records*)malloc(n*sizeof(struct records));
        head->next=NULL;
        for (i=0;i<n;i++){
        printf("\nEnter employee information in the format :\nFirstname Lastname rate Zipcode (newline for the next)\n");
        scanf("%s %s %f %d",&head->first,&head->last,&head->rate,&head->zip);
        conductor=head;
        conductor=conductor->next;}
}

How do I get this right ?

1 Answer 1

1

sample to fix

struct records {
    char first[20];
    char last[20];
    float rate;
    int zip;
    struct records *next;//typo struct node* next; 
};
int main(void){//return type is `int`
    int i, n;
    printf("Please indicate the number of records : ");
    scanf("%d", &n);

    struct records *head,*conductor;
    head=(struct records*)malloc(n*sizeof(struct records));
    for (i=0; i<n; i++){
        printf("\nEnter employee information in the format :\nFirstname Lastname rate Zipcode (newline for the next)\n");
        scanf("%19s %19s %f %d", head[i].first, head[i].last, &head[i].rate, &head[i].zip);
        head[i].next = &head[i+1];
    }
    head[n-1].next = NULL;

    return 0;
}
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.