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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T07:03:34+00:00 2026-06-01T07:03:34+00:00

How can I fscanf for both float and double, as I declared a global

  • 0

How can I fscanf for both float and double, as I declared a global precision once in single precision (float) and once in double precision (double)… so when I run it, I have to change it everytime that I convert to a different type

in double (%lf)
in single (%f)

fscanf(fp1,"%lf", &a[i][j]);

so is there’s a way that works for both and no need to change it every time?

  • 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-01T07:03:36+00:00Added an answer on June 1, 2026 at 7:03 am

    Been a while since I did any coding in C, so you may want to confirm via experimentation, but all single-precision floats are valid double-precision floats, so you could just use ‘%lf’ in the fscanf, store to a temporary double-precision float, and then use logic to assign it to the correct variable.

    Alternatively, if you’re using “#define”s, you could just do something like:

    #define USE_DOUBLE
    #ifdef USE_DOUBLE
    #define STORTYPE double
    #define SCANSTRING "%lf"
    #else
    #define STORTYPE float
    #define SCANSTRING "%f"
    #endif
    ...
    STORTYPE a[x][y];
    fscanf(fp1,SCANSTRING, &a[i][j]);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Imagine that i have on a txt this: Hello SLB 3 1324 how can
Can I have 2 threads in the same process calling fprintf or fscanf at
I'm looking to have fscanf identify when a potential overflow happens, and I can't
I have a question concerning fgets and fscanf in C. What exactly is the
can anyone tell me whats wrong in the following program that accepts 1 or
I need to create a search program in C language, that can parse the
I have been working on this code but I can't find out what is
I have been struggling to figure out the fscanf formatting. I just want to
I'm trying to see if when I do fscanf(inputSTREAM, $%s$, out) I can also
I want to create a simple logfile in PHP that later can be read

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.