编辑代码

#include "stdio.h"
 
int main(void)
{
    unsigned char pMem[] = {0x9C,0x6F,0xDC,0x3F};
    float *p = (float*)pMem;
    printf("%g\r\n",*p);
 
    return 0;
}