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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T19:43:22+00:00 2026-06-03T19:43:22+00:00

I have a char array representing a double precision floating point number in hex

  • 0

I have a char array representing a double precision floating point number in hex form.

char *hex = ""402499999999999A"

I want to extract each char in hex as its own char array and read it into an unsigned int num. For example, I tried

sscanf((char *)&hex[3], "%X", &num);

But this doesn’t give me the 4th char as an individual char array, it gives me the sub char array from the 4th position on, which I suppose is because arrays are given by the pointer of their first element.

Is there a better way to do this? I looked at strcpy and it seems that I can only copy the first n chars, so that’s no good.

  • 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-03T19:43:23+00:00Added an answer on June 3, 2026 at 7:43 pm

    You can do this in many ways. One way is as follows (which is the correct way of how you were doing it):

    char only_1_char[2] = {'\0', '\0'};
    only_1_char[0] = hex[3];
    sscanf(only_1_char, "%X", &num);
    

    and a more efficient solution:

    if (hex[3] <= '9')
        num = hex[3] - '0';
    else
        num = hex[3] - 'A' + 10;
    

    This is just a sample, though. In truth you need to take care of invalid input and lower cases if that is a possibility.

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

Sidebar

Related Questions

I have an unsigned char array and I want to convert it to hex
i have an char array b[20] which i want to write into a file
I have a double converted to a unsigned char array. For example for value
I have extracted a MAC address into a char* array such that each section
I have taken char data into database into array. now i want to convert
I have a char array which contains some value . I want to copy
I have a char array and I need to get the address of each
I have char array(vector) of chars and I want to insert white spaces in
I have a char array of A, B, C and I want to print
I have a a char array: char* name = hello; I want to add

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.