#include<iostream>
using namespace std;
int main(){
int i;
float f=-6.9072;
//将float指针转换为字符指针
unsigned char* p=reinterpret_cast<unsigned char*>(&f);
cout<<hex;//print bytes of f in hex
for(i=0; i<sizeof(float);i++)
cout<<static_cast<int>(p[i])<<endl;
}
相关文章
- 09-25gprof使用介绍
- 09-25C++ 作业(哈夫曼树)
- 09-25STM32F407移植contiki2.6后使用LWIP库实现tcp client
- 09-25python – Cython:对于类型化的内存视图,我应该使用np.float_t而不是double
- 09-25使用 openocd 调试 STM32F103
- 09-25tk.mybatis使用方法
- 09-25使用TK框架中selectByPrimaryKey
- 09-25pagehelper分页+tk.mybatis的使用
- 09-25tk.mybatis.mapper使用
- 09-25python – 允许用户使用SQLAlchemy从db审计跟踪回滚