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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T06:35:00+00:00 2026-06-03T06:35:00+00:00

I wrote a program that accepts a character of input and outputs that character,

  • 0

I wrote a program that accepts a character of input and outputs that character, like this

int ch = getchar();
printf("%c", ch);

It worked like I expected. Then I decided to be welcoming and print Hello first.

printf("Hello!\n");
int ch = getchar();
printf("%c", ch);

To my surprise, this caused the compiler to throw two errors:

error C2065: ‘ch’ : undeclared identifier
error C2143: syntax error : missing ‘;’ before ‘type’

I didn’t see why adding the first line would cause that to happen. Anyway, I refactored the program to get rid of the int declaration and the errors magically disappeared.

printf("Hello!\n");
printf("%c", getchar());

What’s going on? What’s the magic that causes these errors to appear and then disappear?

  • 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-03T06:35:01+00:00Added an answer on June 3, 2026 at 6:35 am

    Creating new variables after the start of a block was not allowed in C89 standard but is allowed in the newer C99 standard.

    You are using a older compiler or a compiler not fully compliant to c99.
    Your code example should work as is on any good compiler. Works on gcc-4.3.4


    Alternate Solutions:

    You can get rid of the problems in two ways:
    Declare the variable at the begining of the block:

    int ch;
    printf("Hello!\n");
    ch = getchar();
    printf("%c", ch);
    

    Or

    Create a new block for declaring the variable:

    printf("Hello!\n");
    { 
        int ch = getchar();
        printf("%c", ch);
    }
    

    Suggestion:

    You should really change your compiler because if i remember correctly gcc supported this as compiler extension even prior to c99.

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

Sidebar

Related Questions

I wrote a program that accepts and outputs Hebrew (i.e. right-to-left) text. In lieu
I wrote a program that worked as a server. Knowing that accept was blocking
A while ago, I wrote a program that outputs any localhost or network database
Below is the program that I wrote. /******************************************************************************* * This program reads EOF from
I wrote a program that forks some processes with fork(). I want to kill
I recently wrote a program that used a simple producer/consumer pattern. It initially had
I wrote a little program that solves 49151 sudoku's within an hour for an
I wrote a test program thinking that the address of p1 will be less
I wrote a program in java that rolls a die and records the total
I wrote a C program in Linux that mallocs memory, ran it in a

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.