博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C float与char数组 互转
阅读量:4839 次
发布时间:2019-06-11

本文共 530 字,大约阅读时间需要 1 分钟。

 

  1. //转换float数据到字节数组  unsigned char i;  float floatVariable;  unsigned char charArray[4];  (unsigned char) *pdata = ((unsigned char)*)&floatVariable;  //把float类型的指针强制转换为unsigned char型  for(i=0;i<4;i++)  {      charArray[i] = *pdata++;//把相应地址中的数据保存到unsigned char数组中       }    //转换字节数组到float数据  float   floatVariable;  unsigned char  i;   void   *pf;       pf = &floatVariable;   (unsigned char) * px = charArray;      for(i=0;i<4;i++)  {      *(((unsigned char)*)pf+i)=*(px+i);       }

     

转载于:https://www.cnblogs.com/LJWJL/p/5999329.html

你可能感兴趣的文章
概率DP RED IS GOOD
查看>>
Linux Shell 小脚本经典收藏
查看>>
go tool proof
查看>>
numpy数组及处理:效率对比
查看>>
Luogu P1318 积水面积
查看>>
前台线程 和 后台线程
查看>>
PHP性能优化大全(转)
查看>>
shell编程
查看>>
ImageSwitch+Gallery
查看>>
【软件需求工程与建模 - 小组项目】第0周:团队成员介绍
查看>>
unresolved external symbol "public: virtual __thiscall...错误
查看>>
php连接oracle oracle开启扩展
查看>>
入门自定义标签,(在SSH里面有自定义标签的练习)
查看>>
最近遇到的一些问题汇总
查看>>
mysql插入数据报错一二
查看>>
spring mvc 常用前后台数据交互的注解
查看>>
Linux学习12-CentOS设置多个tomcat开机自启动
查看>>
ASP.NET MVC Controller 编程所涉及到的常用属性成员
查看>>
条款37:绝不重新定义继承而来的缺省参数值(Never redefine a function's inherited default parameter value)...
查看>>
HDU 4288 Coder 【线段树+离线处理+离散化】
查看>>