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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T14:38:22+00:00 2026-05-28T14:38:22+00:00

#include<stdio.h> int main() { char a, b; scanf(%c, &a); scanf(%c, &b); printf(%c %c,a,b); return

  • 0
#include<stdio.h>

int main()
{
    char a, b;
    scanf("%c", &a);
    scanf("%c", &b);

    printf("%c %c",a,b);
    return 0;
}

When I run this program, I only get output as a & I don’t get the prompt to enter 2nd character. Why?

  • 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-28T14:38:23+00:00Added an answer on May 28, 2026 at 2:38 pm

    In this line,

    scanf("%c", &a);
    

    you are actually taking a %d from the stdin (standard input) but at the time you entered a character from stdin, you also typed ENTER from your keyboard which means that now you have two characters in stdin; the character itself & \n. So, the program took first character as the one you entered & second character as \n.

    You need to use

    scanf("%c\n", &a);
    

    so that scanf eats the newline (that came by pressing ENTER) too.

    As rodrigo suggested, you can use these too.

    scanf(" %c", &a); or scanf("%c ", &a);
    

    The way you are thinking that second character is printed is wrong. It’s actually being printed but it’s \n so your prompt might be coming to the next line.

    Your code will work if you enter both characters without using ENTER.

    shadyabhi@archlinux /tmp $ ./a.out 
    qw
    q wshadyabhi@archlinux /tmp $
    

    Note, when you used this, the only thing in STDIN was q & w. So, the first scanf ate q & the second one w.

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

Sidebar

Related Questions

consider the code #include<stdio.h> int main(void) { char* a; scanf(%s,a);//&a and &a[0] give same
#include<stdio.h> #include<conio.h> int main(){ char i; int c; scanf(%i,&c); scanf(%c,&i);// catch the new line
This part of my code works fine: #include <stdio.h> int main(){ //char somestring[3] =
hi can anybody tell me the error in this? #include<stdio.h> int main() { char
#include <stdio.h> int main () { char loop='y'; while(loop != 'n') { printf(loop? );
This is my code: #include <stdio.h> #include <string.h> #include <iconv.h> int main() { char
int main(void) { char *input; printf(prompt>); scanf(%s, input); printf(%s, input); return 0; } prompt>input
this program hangs after taking first argument:- #include <stdio.h> #include <conio.h> void ellip(char*,...); int
#include <stdio.h> int main() { char read = ' '; while ((read = getchar())
#include<stdio.h> int main() { char a[5]=hello; puts(a); //prints hello } Why does the code

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.