资源简介
十进制浮点数转IEEE754浮点数,利用C语言中的union
代码片段和文件信息
#include “stdio.h“
typedef union test1 //IEEE-754 Floating-Point Conversion 32
{
unsigned int intData; //unsigned int为两个字节,可以直接用于表示32位
float floatData;
}Float_32;
typedef union test2 //IEEE-754 Floating-Point Conversion 64
{
unsigned char intData[8]; //unsigned c
评论
共有 条评论