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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T07:17:34+00:00 2026-06-03T07:17:34+00:00

I learnt (self-learning) the basics of structure in C today and wrote this simple

  • 0

I learnt (self-learning) the basics of structure in C today and wrote this simple code. it is compiling without any error. I know that successful compilation is no guarantee for a bug-free software. While execution, it scans the inputs for two structure variables only and gives erroneous display. for the sake of simplicity I chose a char to store the book name. I am not able to figure out the bug here. could you find one?

#include<stdio.h>

int main(void)
{
    struct book
    {   char name;
        float price;
        int pages;
    };

    struct book b[3];

    int i;

    for (i = 0; i <= 2; i++){
        printf("\nEnter name, price and pages ");
        scanf("%c %f %i", &b[i].name, &b[i].price, &b[i].pages);
    }

    for (i = 0; i <= 2; i++)
        printf("\n%c %f %i",b[i].name, b[i].price, b[i].pages);

    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-03T07:17:35+00:00Added an answer on June 3, 2026 at 7:17 am

    You need to remove “extra” input by adding while((ch=getchar())!='\n'); ( to flush the input buffer) (Please declare the char ch;):

    for (i = 0; i <= 2; i++){
       printf("\nEnter name, price and pages ");
       scanf("%c %f %i",&b[i].name,&b[i].price, &b[i].pages);
       while((ch=getchar())!='\n'); //eat the chars
     }
    

    Tutorial/posts:

    1. “Flushing” the input stream
    2. How to Get User Input from console — safely.
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know I learnt this on the SCJP syllabus, but it escapes me. What's
I'm begin to learn php by my self, for example I have this code,suppose
I have been progressing through Learn Prolog Now! as self-study and am now learning
I'm trying to learn IronPython. I created an extremely simple class like this one:
I've been self-learning C++ for about 4 months now. I'm enjoying it, and I
I started to learn jQuery. I wrote a code, that will cycle the position
I want to develop Windows Azure apps for self learning. But it seems I
Am working on a POC for self learning in which I want to keep
Guys!! I'm really enthusiastic in learning django and learnt a bit on Django-1.2 but
I think list comprehensions may give me this, but I'm not sure: any elegant

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.