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

  • Home
  • SEARCH
  • 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 8946735
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T12:35:11+00:00 2026-06-15T12:35:11+00:00

I am trying to get input into an array, until a user enters -1

  • 0

I am trying to get input into an array, until a user enters -1 to exit the input mode.

Something strange is happening in this block of code when a -1 is entered but only after at least two values have been entered.

#define ARRAYSIZE 100
int input[ARRAYSIZE];
int i=0;
do {
  printf("Enter data #%d or -1 to exit: ", i);
  scanf("%d", &input[i]);
} while(input[i++] != -1 && i<ARRAYSIZE)

The code will just hang indefinitely. I have compiled and run on two separate architectures, but the problem doesn’t show up when it is run in gdb.

Inserting print statements revealed that the code is indeed hanging at the scanf statement.

Does anyone have any idea what might be causing this?

  • 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-15T12:35:12+00:00Added an answer on June 15, 2026 at 12:35 pm

    you were never checking the value of the data you saved (it was check the next uninitialized element), do while is a better fit

    #define ARRAYSIZE 100
    int input[ARRAYSIZE],i=0;
    do {printf("Enter data #%d or -1 to exit: ", i);
        scanf("%d", &input[i]);
    }while(input[i] != -1 && ++i<ARRAYSIZE);
    //if this is main() you need a return 0; here also or it will hang
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to get user input and put it into an array of
i am currently trying to get Input Mode Editor (IME) support working with a
I'm trying to get this C++ code to input a series of numbers from
I've been trying to get input with IUP to make a small pong game.
I am trying to get text input from the keyboard in Java 6. I
I am trying to get a input text area and a submit button attached
I am having a terrible time trying to get an input box like the
I'm trying to get all buffered input from cin . I tried getline ,
I'm trying to get all the input elements from a certain form from jQuery
I am trying to get the JQuery Token Input prepopulated. var assignUserJson=$('#assignUserJson').val(); console.log(assignUserJson); //[{id:1,name:Andrew},{id:3,name:John}]

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.