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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T02:35:26+00:00 2026-05-23T02:35:26+00:00

I recently stumbled upon a curious case(atleast for me, since I hadn’t encountered this

  • 0

I recently stumbled upon a curious case(atleast for me, since I hadn’t encountered this before)..Consider the simple code below:-

int x;
scanf("%d",&x);
printf("%d",x);

The above code takes a normal integer input and displays the result as expected..

Now, if I modify the above code to the following:-

int x;
scanf("%d ",&x);//notice the extra space after %d
printf("%d",x);

This takes in another additional input before it gives the result of the printf statement.. I don’t understand why a space results in change of behaviour of the scanf().. Can anyone explain this to me….

  • 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-23T02:35:27+00:00Added an answer on May 23, 2026 at 2:35 am

    From http://beej.us/guide/bgc/output/html/multipage/scanf.html:

    The scanf() family of functions reads data from the console or from a FILE stream, parses it, and stores the results away in variables you provide in the argument list.

    The format string is very similar to that in printf() in that you can tell it to read a “%d”, for instance for an int. But it also has additional capabilities, most notably that it can eat up other characters in the input that you specify in the format string.

    What’s happening is scanf is pattern matching the format string (kind of like a regular expression). scanf keeps consumes text from standard input (e.g. the console) until the entire pattern is matched.

    In your second example, scanf reads in a number and stores it in x. But it has not yet reached the end of the format string — there is still a space character left. So scanf reads additional whitespace character(s) from standard input in order to (try to) match it.

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

Sidebar

Related Questions

I recently stumbled upon a global hotkey class ( This one ), it works
I've been working on topcoder recently and I stumbled upon this question which I
I recently stumbled upon this page . And I was particularly interested about the
Recently I was reading about partitioning code with .NET assemblies and stumbled upon a
I recently stumbled upon this: PCRE Regex Syntax - Recursive Patterns It appears to
So I recently stumbled upon this great library for handling HTTP requests in Python;
Recently searching for a 'technical article' I stumbled upon this Microsoft page: http://academic.research.microsoft.com/ .
I recently stumbled upon this in a project I'm working on. In package A
Recently stumbled upon this neat little bug or 'feature' in PHP: function myCmpFunc($a,$b) {
I want to share this odd but interesting situation I stumbled upon recently while

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.