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 479769
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T00:49:31+00:00 2026-05-13T00:49:31+00:00

I have a text file that has strings on each line. I want to

  • 0

I have a text file that has strings on each line. I want to increment a number for each line in the text file, but when it reaches the end of the file it obviously needs to stop. I’ve tried doing some research on EOF, but couldn’t really understand how to use it properly.

I’m assuming I need a while loop, but I’m not sure how to do it.

  • 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-05-13T00:49:31+00:00Added an answer on May 13, 2026 at 12:49 am

    How you detect EOF depends on what you’re using to read the stream:

    function                  result on EOF or error                    
    --------                  ----------------------
    fgets()                   NULL
    fscanf()                  number of succesful conversions
                                less than expected
    fgetc()                   EOF
    fread()                   number of elements read
                                less than expected
    

    Check the result of the input call for the appropriate condition above, then call feof() to determine if the result was due to hitting EOF or some other error.

    Using fgets():

     char buffer[BUFFER_SIZE];
     while (fgets(buffer, sizeof buffer, stream) != NULL)
     {
       // process buffer
     }
     if (feof(stream))
     {
       // hit end of file
     }
     else
     {
       // some other error interrupted the read
     }
    

    Using fscanf():

    char buffer[BUFFER_SIZE];
    while (fscanf(stream, "%s", buffer) == 1) // expect 1 successful conversion
    {
      // process buffer
    }
    if (feof(stream)) 
    {
      // hit end of file
    }
    else
    {
      // some other error interrupted the read
    }
    

    Using fgetc():

    int c;
    while ((c = fgetc(stream)) != EOF)
    {
      // process c
    }
    if (feof(stream))
    {
      // hit end of file
    }
    else
    {
      // some other error interrupted the read
    }
    

    Using fread():

    char buffer[BUFFER_SIZE];
    while (fread(buffer, sizeof buffer, 1, stream) == 1) // expecting 1 
                                                         // element of size
                                                         // BUFFER_SIZE
    {
       // process buffer
    }
    if (feof(stream))
    {
      // hit end of file
    }
    else
    {
      // some other error interrupted read
    }
    

    Note that the form is the same for all of them: check the result of the read operation; if it failed, then check for EOF. You’ll see a lot of examples like:

    while(!feof(stream))
    {
      fscanf(stream, "%s", buffer);
      ...
    }
    

    This form doesn’t work the way people think it does, because feof() won’t return true until after you’ve attempted to read past the end of the file. As a result, the loop executes one time too many, which may or may not cause you some grief.

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

Sidebar

Related Questions

Scenario: I have a text file that has pipe (as in the | character)
I have a rather large text file that has a bunch of missing newlines,
I have a simple WPF (XAML) file that has some animated shapes and text.
I have a text file that contains localized language strings that is currently encoded
I have a text file that contains a long list of entries (one on
I have a text file that is encoded in UTF-8. I'm reading it in
I have a small text file that I'd like to read into a scalar
I'm working in Visual Studio 2005 and have added a text file that needs
I have a text file on my local machine that is generated by a
I have a basic C# console application that reads a text file (CSV format)

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.