Quick actions

cmd+k|ctrl+k

Navigation

Languages

Cast, CastBit

Snippet info

Language

C

Visibility

public

Author

evine

Created

2016-04-25T15:15:27Z

Updated

2016-04-25T15:22:05Z

#include <stdio.h>

#define Cast(Type, Value) ((Type)(Value))
#define CastBit(Type, Value) (*Cast(Type *, &(Value)))

int main()
{
    unsigned int a = 0x40400000;
    float b = CastBit(float, a);
    printf("%f\n",b);
    return 0;
}
INFO