Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been struggling with this for days and i can't figure out why it doesn't work.

I'm trying to read numbers from file with numbers written like this:

0 2012 1 1 2000.000000
0 2012 1 1 3000.000000
1 2012 1 1 4500.000000

my structure:

struct element{

        int id;
        int sign;
        int year;
        int month;
        double amount;

        struct element *next;


    };

struct queue{
    struct element *head;
    struct element *tail;
    struct element *head2; 
    struct element *temp;  
    struct element *temph; 

    int size;
};

(head2, temp and temph are used in sorting structure)

and reading from a file:

void read_str(struct queue *queue){

    FILE *reads;

        char filename[40];
        int temp;

        printf("Type in name of the file\n");
        scanf("%s",&filename);
        reads=fopen(filename, "r");
        if (reads==NULL) {
            perror("Error");
            return 1;
                 }

        else { while(!feof(reads)) {

                struct element *n= (struct element*)malloc(sizeof(struct element));             
                fscanf(reads,"%d %d %d %d %lf", n->id, n->sign, n->year, n->month, n->amount);                  
                n->next=NULL;                   

                if(queue->head ==NULL){
                queue->head=n;}
                else{
                queue->tail->next=n;
                }
                queue->tail=n;
                queue->size++;                  

                }           
        }

}

I can change the way the data looks in a file by changing the function that writes it, but I don't think that's the problem. My guess i'm using mallocin a wrong way.

share|improve this question

1 Answer

up vote 6 down vote accepted
fscanf(reads,"%d %d %d %d %lf", n->id, n->sign, n->year, n->month, n->amount);

The scanf family of functions expect addresses. Change the fscanf line to:

fscanf(reads,"%d %d %d %d %lf", &n->id, &n->sign, &n->year,
    &n->month, &n->amount);

Side note, this is a seriously misleading line:

else { while(!feof(reads)) {
share|improve this answer
thank you, it helped! Why shouldn't I use else { while(!feof(reads)) {? – ozech Jul 1 '12 at 8:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.