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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T00:51:11+00:00 2026-06-18T00:51:11+00:00

I am running into a bit of a problem that my sscanf line is

  • 0

I am running into a bit of a problem that my sscanf line is always evaluating to true. I want it to evaluate to false if the fgets passes it a string with no digits…any advice/help here?

int main(void){
  int choice;
  char buffer[LINESIZE];

 while (1){
   printf("\nprompt");

   if(fgets(buffer,LINESIZE, stdin)){
        if(sscanf(buffer, "%d", &choice)){
     /* do something*/ 
     else 
      /*do something else*/
  • 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-18T00:51:12+00:00Added an answer on June 18, 2026 at 12:51 am

    As said in the comments sscanf() returns the number of argument matched; the standard behaviour in C is that 0 is implicitly casted to FALSE and anything else is casted to true, so I guess 2 things can be happening either your string always contains an integer and it always reads something or your compiler is doing something weird and it’s casting 0 to true (very strange)

    but in both cases you can fix this modifying the code as follows

    int main(void){
      int choice;
      char buffer[LINESIZE];
    
     while (1){
       printf("\nprompt");
    
       if(fgets(buffer,LINESIZE, stdin)){
            if(sscanf(buffer, "%d", &choice) != 0){  // be carefull with EOF 
         /* do something*/ 
         else 
          /*do something else*/
    

    you will get the wanted result and you will have a much more readable code (and correct since you don’t do strange casts)

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

Sidebar

Related Questions

I'm running into a bit of a problem with my WCF service that is
I'm running into a bit of dilemma at the moment in that I need
I'm running into a bit of a problem with AudioTimeStamps on the iPhone. When
Running into a bit of a funny problem. I have each day of the
I'm running into a bit of a problem. What I'm doing: I've got a
I'm running into a bit of a problem using the css content property to
I'm using MVC3 & EF4, running into a bit of a problem when trying
I'm running into a bit of a problem here, I'm messing around with machine
Playing around a bit more with jqTouch and am running into a problem with
I am running into a problem creating an android emulator from the command line.

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.