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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T17:48:16+00:00 2026-06-18T17:48:16+00:00

Suppose a text file has hello\n stack overflow \n in a file, the output

  • 0

Suppose a text file has hello\n stack overflow \n in a file, the output should be 2 since there are 2 \n sequences. Instead, I am getting one as the answer. What am I doing wrong? Here is my code:

int main()
{
    FILE                *fp = fopen("sample.txt", "r");    /* or use fopen to open a file */
    int                 c;              /* Nb. int (not char) for the EOF */
    unsigned long       newline_count = 1;

        /* count the newline characters */
    while ( (c=fgetc(fp)) != EOF ) {
        if ( c == '\n' )
            newline_count++;
        putchar(c);
    }

    printf("\n  %lu newline characters\n ", newline_count);
    return 0;
}
  • 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-18T17:48:17+00:00Added an answer on June 18, 2026 at 5:48 pm

    Try this:

    int main()
    {
        FILE                *fp = fopen("sample.txt", "r");    /* or use fopen to open a file */
        int                 c, lastchar = 0;              /* Nb. int (not char) for the EOF */
        unsigned long       newline_count = 0;
    
            /* count the newline characters */
        while ( (c=fgetc(fp)) != EOF ) {
            if ( c == 'n' && lastchar == '\\' )
                newline_count++;
            lastchar = c; /* save the current char, to compare to next round */
            putchar(c);
        }
    
        printf("\n  %lu newline characters\n ", newline_count);
        return 0;
    }
    

    Really, a literal \n is two characters (a string), not just one. So you cannot simply compare it as though it was a character.

    EDIT
    Since \n is two characters, the \ and the n, we must remember the last character we read in, and check if the current character is an n and the previous character is a \. If both tests are true, that means we have located the sequence \n in the file.

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

Sidebar

Related Questions

suppose a text file has 11001100 11001101 and i open the text file and
Suppose I have a text file that says: This file has plain text Now,
Supposed a text file named name.txt . there are some contents as the following
Suppose I have this code: String encoding = UTF-16; String text = [Hello StackOverflow];
Suppose that one has some lock based code like the following where mutexes are
server: apache http server 2.2 problem: code does not load my text file hello
Suppose I have the following text in a text file First Text Some Text
Is there a way of searching for unicode characters inside a text file under
There's an XSL that includes another XSL: <xsl:include href=registered.xsl/> That included file has a
Suppose we have a text editor application that runs with one separate process per

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.