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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T10:29:06+00:00 2026-05-26T10:29:06+00:00

This problem really perturbs me on how to do it in C way: Display

  • 0

This problem really perturbs me on how to do it in C way:

Display series of numbers (1,2,3,4, 5….etc) in an infinite loop. The program should quit if someone hits a specific key (Say Backspace key).

My try was to make a loop and then get the user input every time.

int main()
{
    char userInput;
    int i = 0;

    while(true)
    {
       Sleep(1000);
       printf("%d", ++i);
       userInput = getch();
       fflush(stdin);

       if (userInput == '\b'){
        break;   
       }           
    }

    getch();
    return 0;

}

But this is not the answer the problem is looking for. It does want to continue printing numbers while checking the user input.

Anyone could help a newbie with this? Thanks! 😀

Update:
Mr.Mark Wilkins just gave me the answer by using the _kbhit() function.
And this was what my solution looked like:

int main()
{
    int i = 0;
    char userInput;

    while( !_kbhit() && userInput != '\b' )
    {
       Sleep(500);
       printf("%d", ++i);    
    }

    getche();

    getch();
    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-05-26T10:29:07+00:00Added an answer on May 26, 2026 at 10:29 am

    You can call _kbhit to check if input is waiting. If there is, then you can read it with _getch.

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

Sidebar

Related Questions

I don't really know what's causing this problem but my program, which is supposed
I would really appreciate if you could shed light on this problem. I have
I'm really suprised I haven't run into this problem before, but it seems that
I've been fighting this problem for many hours now and could really use some
Ok I have this problem that I've never had before, it's really bugging me.
I know I've had this problem before so I'm really frustrated. I've got the
Sorry for the vague title, as I really can't explain this problem succinctly. Basically
This is a really weird problem that I have been having. When I download
This is a really strange problem, that appears to be somewhat intermittent (although it
It's a really simple problem. I've got HTML code like this : <div> <img

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.