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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T21:28:39+00:00 2026-05-30T21:28:39+00:00

The following will only read until the next white space occurs, excluding it fscanf

  • 0

The following will only read until the next white space occurs, excluding it

fscanf (list_in, "%s", keywords);
  • 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-30T21:28:40+00:00Added an answer on May 30, 2026 at 9:28 pm

    If I understand your question correctly, you could use a character class:

    fscanf( list_in, "%[^ \r\n\t]", keywords );
    

    Of course, to avoid buffer overruns, you should always set a maximum length when reading strings with (f)scanf, as in:

    char keywords[81];
    
    fscanf( list_in, "%80[^ \r\n\t]", keywords );
    

    Edit: If you want to include the trailing whitespace character in the string, you could read it separately into a char variable using a %c directive, and either process it that way or append it to the string:

    char keywords[82], space;
    int n;
    
    fscanf( list_in, "%80[^ \r\n\t]%c", keywords, &space );
    
    n = strlen( keywords );
    keywords[n] = space;
    keywords[n+1] = '\0';
    

    (Of course, to be extra careful, you should also check the return value of fscanf to make sure you didn’t, for example, hit the end of the input file.)

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

Sidebar

Related Questions

Will GHC perform tail-call optimization on the following function by default? The only weird
The following will throw the error Error in v$a : $ operator is invalid
The following will extract the files in /root/ directory. But it also creates the
Wondering if following will work for google in robots.txt Disallow: /*.action I need to
Following command will let me know the names of databases. $ mysqlshow But how
The following script will update the database, but it won't display the correct page
The following code will search for the user within the domain controller, but I
The following code will add the categories selector widget to the WordPress Page editor
The following code will log in my application to a server. That server will
The following example will not compile for me: #include <iostream> #include <functional> #include <string>

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.