Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8496025
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T23:44:11+00:00 2026-06-10T23:44:11+00:00

Does feof() checks for eof for the current position of filepointer or checks for

  • 0

Does feof() checks for eof for the current position of filepointer or checks for the position next to current filepointer?

Thanks for your help !

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T23:44:12+00:00Added an answer on June 10, 2026 at 11:44 pm

    Every FILE stream has an internal flag that indicates whether the caller has tried to read past the end of the file already. feof returns that flag. The flag does not indicate whether the current file position is as the end of the file, only whether a previous read has tried to read past the end of the file.

    As an example, let’s walk through what happens, when reading through a file containing two bytes.

    f = fopen(filename, "r"); // file is opened
    assert(!feof(f));         // eof flag is not set
    c1 = getc(f);             // read first byte, one byte remaining
    assert(!feof(f));         // eof flag is not set
    c2 = getc(f);             // read second byte, no bytes remaining
    assert(!feof(f));         // eof flag is not set
    c3 = getc(f);             // try to read past end of the file
    assert(feof(f));          // now, eof flag is set
    

    This is why the following is the wrong way to use eof when reading through a file:

    f = fopen(filename, "r");
    while (!feof(f)) {
        c = getc(f);
        putchar(c);
    }
    

    Because of the way feof works, the end-of-file flag is only set once getc
    tries to read past the end of the file. getc will then return EOF, which is
    not a character, and the loop construction causes putchar to try to write it
    out, resulting in an error or garbage output.

    Every C standard library input method returns an indication of success or
    failure: getc returns the special value EOF if it tried to read past the
    end of the file, or if there was an error while reading. The special value is
    the same for end-of-file and error, and this is where the proper way to use
    feof comes in: you can use it to distinguish between end-of-file and error
    situations.

    f = fopen(filename, "r");
    c = getc(f);
    if (c == EOF) {
        if (feof(f))
            printf("it was end-of-file\n");
        else
            printf("it was error\n");
    }
    

    There is another internal flag for FILE objects for error situations:
    ferror. It is often clearer to test for errors instead of “not end of file”.
    An idiomatic way to read through a file in C is like this:

    f = fopen(filename, "r");
    while ((c = getc(f)) != EOF) {
        putchar(c);
    }
    if (ferror(f)) {
        perror(filename):
        exit(EXIT_FAILURE);
    }
    fclose(f);
    

    (Some error checking has been elided from examples here, for brevity.)

    The feof function is fairly rarely useful.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

DISCLAIMER: Don't use ::feof() as your loop condition. For example, see the answer to:
Does anyone know if there is a way to generate different code in the
Does COUNT(*) have any significant impact for MySQL performance if query already has GROUP
Does anyone have a translate function for x/y positions after rotation in javascript? for
Does anyone know of a free tool, similar to what is built into Visual
Does anyone know why UsernameExists wont return True. I must have my syntax messed
Does anyone out there know how to integrate ContentFlow ( http://www.jacksasylum.eu/ContentFlow ) and Lightbox2
Does the following psuedo code accomplish my goal of cleaning up after myself when
Does the G'MIC (Grey's Magic Image Converter) library work on iOS ? what steps
Does anyone know of a mechanism in Sybase ASA 9 / Sybase SQL Anywhere

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.