Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm reading a text file char by char using fscanf();

I've tried to pass my FILE pointer to a function, to keep reading there, but I'm getting stuck in a loop.

void keepReading(FILE *fp){
     char c;
     fscanf(fp, "%c", &c);
}

/* main */
fscanf(fp, "%c", &c);
while(c!='A'){
    keepReading(fp);
}

Any ideas?

share|improve this question
Can you post the text file you're reading? – austin Nov 17 '12 at 23:24

2 Answers

up vote 2 down vote accepted

The variable c in keepReading() is local to that function. Return the value to your loop and test that

char keepReading(FILE *fp){
     char c;
     fscanf(fp, "%c", &c);
     return c;
}

/* main */
fscanf(fp, "%c", &c);
while(c!='A'){
    c = keepReading(fp);
}
share|improve this answer
Got it! it worked ;) – Frank Progamer Nov 17 '12 at 23:26
That's good unless you hit EOF before you get the 'A'; then you're likely to back in an infinite loop again. – Jonathan Leffler Nov 17 '12 at 23:47

Don't use fscanf for this, if you are going to read in a file character by character, use the function that reads characters, fgetc. fscanf is for reading formatted data.

#include <stdio.h>

int main(void)
{
    FILE *file = fopen("...", "r");
    int c;
    while ((c = fgetc(file)) != EOF)
    {
        if (c == 'A') break;
        // do stuff
    }
    fclose(file);
}
share|improve this answer

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.