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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T13:38:03+00:00 2026-06-11T13:38:03+00:00

I have a unsigned char* . Typically this points to a chunk of data,

  • 0

I have a unsigned char*. Typically this points to a chunk of data, but in some cases, the pointer IS the data, ie. casting a int value to the unsigned char* pointer (unsigned char* intData = (unsigned char*)myInteger;), and vice versa.

However, I need to do this with a float value, and it keeps giving me conversion errors.

unsigned char* data;
float myFloat = (float)data;

How can I do 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-11T13:38:04+00:00Added an answer on June 11, 2026 at 1:38 pm

    If your compiler supports it (GCC does) then use a union. This is undefined behavior according to the C++ standard.

    union {
        unsigned char* p;
        float f;
    } pun;
    
    pun.p = data;
    float myFloat = pun.f;
    

    This works if sizeof(unsigned char *) == sizeof(float). If pointers are larger than floats then you have to rethink your strategy.

    See wikipedia article on type punning and in particular the section on use of a union.

    GCC allows type punning using a union as long as you use the union directly and not typecasting to a union… see this IBM discussion on type-pun problems for correct and incorrect ways of using GCC for type punning.

    Also see wikipedia’s article on strong and weak typing and a well researched article on type punning and strict aliasing.

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

Sidebar

Related Questions

This is the Case i have an unsigned char pointer to BMP image data
I have a small sample function: #define VALUE 0 int test(unsigned char x) {
i have written this structure: struct bmpheader { unsigned char magic[2]; unsigned int fsize;
I have this array: unsigned char* data = CGBitmapContextGetData(cgctx); then I tried to get
I have this buffer given: unsigned char *buffer; int buffer_length; This is how I
I have the following code int ParseData(unsigned char *packet, int len) { struct ethhdr
I have a double converted to a unsigned char array. For example for value
I have an array that is like this: unsigned char array[] = {'\xc0', '\x3f',
I have a program structure like following : int firstFunction(unsigned char *firstValue, int s,
If I have a struct like this: typedef struct { unsigned char c1; unsigned

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.