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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T06:03:34+00:00 2026-05-27T06:03:34+00:00

Can some one explain me why I see a double input of the printf()

  • 0

Can some one explain me why I see a double input of the printf() function the while loop:

#include <ctype.h>
#include <stdio.h>

int main(){
    int x = 0;

    while ( x != 'q'){

    printf("\nEnter a letter:");

    x=getchar();
    printf("%c\n", x);
    if( isalpha(x) )
      printf( "You entered a letter of the alphabet\n" );
    if( isdigit(x) )
      printf( "You entered the digit %c\n", x);
    }   
    return 0;
}

The output of the code in Debian Squeeze (gcc version 4.4.5 (Debian 4.4.5-8)) is:

Enter a letter:1
1
You entered the digit 1

Enter a letter: // why is the first one appearing ???


Enter a letter:2
2
You entered the digit 2
  • 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-27T06:03:35+00:00Added an answer on May 27, 2026 at 6:03 am

    The first one reads the line terminator character you entered when hitting Enter after 1 (the line terminator will remain in the input buffer).

    You can verify this by adding an else branch:

    #include <ctype.h>
    #include <stdio.h>
    
    int main()
    {
      int x = 0;
      while ( x != 'q')
      {
        printf("\nEnter a letter:");
        x = getchar();
        printf("%c\n", x);
        if( isalpha(x) )
          printf( "You entered a letter of the alphabet\n" );
        else if( isdigit(x) )
          printf( "You entered the digit %c\n", x);
        else
          printf("Neither letter, nor digit: %02X\n", x);
      }
      return 0;
    }
    

    The output:

    Enter a letter:1
    1
    You entered the digit 1
    
    Enter a letter:
    
    Neither letter, nor digit: 0A
    
    Enter a letter:2
    

    The byte 0A is the line-feed character.

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

Sidebar

Related Questions

Can some one explain to me the difference between categories and inheritance in Objective
How to pass parameters to [WebMethod] in Asp.Net(C#) ? Can some one please explain
can some one explain me how to crate jar file. my source folder has
Can some one please help explain why when I block and continue observer's onNext
Can some one point me to or explain some kind of event based design
I see them all the time and always ignore them. Can someone explain to
If givin some situation that you can do a loop of a certain event
Could some one explain to me what a Workspace space is in Aptana and
Can someone explain the mechanics of a jump table and why is would be
Can someone explain to me the advantages of using an IOC container over simply

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.