博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
字节顺序
阅读量:6814 次
发布时间:2019-06-26

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

#include 
typedef int* int_ptr;typedef unsigned char* byte_ptr;void show_bytes( byte_ptr start, int len ){ int i; for( i = 0; i < len; ++i ){ printf( " %4.2x", start[i] ); } printf( "\n" );}void show_int( int x ){ show_bytes( ( byte_ptr ) &x, sizeof( int ) );}void show_float( float x ){ show_bytes( ( byte_ptr ) &x, sizeof( float ) );}void show_ptr( void* x ){ show_bytes( ( byte_ptr ) &x, sizeof( void* ) );}void test_show_bytes( int val ){ int ival = val; float fval = ( float ) ival; int* pval = &ival; show_int( ival ); show_float( fval ); show_ptr( pval );}int main(){ /* Machine | value | type | byte( hexadecimal ) | ------------------------------------- Linux | 12345 | int | 39 30 00 00 NT | 12345 | int | 39 30 00 00 Sun | 12345 | int | 00 00 30 39 ( big endian ) Alpha | 12345 | int | 39 30 00 00 -------------------------------------- Linux | 12345.0 | float | 00 e4 40 46 NT | 12345.0 | float | 00 e4 40 46 Sun | 12345.0 | float | 46 40 e4 00 Alpha | 12345.0 | float | 00 e4 40 46 -------------------------------------- Linux | &ival | int* | 3e fa ff bf NT | &ival | int* | 1c ff 44 02 Sun | &ival | int* | ef ff fc e4 Alpha | &ival | int* | 80 fc ff 1f 01 00 00 00 */ test_show_bytes( 12345 ); return 0;}

转载地址:http://zkqwl.baihongyu.com/

你可能感兴趣的文章
Step5:Clone EBS Using Rman
查看>>
IOS atomic与nonatomic,assign,copy与retain的定义和区别
查看>>
Clob,Blob,InputStream,byte 互转
查看>>
正则性能调优
查看>>
jdk 动态代理基本例子
查看>>
刚接触这个比较迷茫
查看>>
shellshock漏洞回顾
查看>>
部署shop++,启动eclipse遇到内存溢出。
查看>>
木.马查杀-应急工具-排查步骤
查看>>
解压缩命令
查看>>
ubuntu16.04下怎么安装flash player
查看>>
Java 嵌入 SPL 轻松实现 Excel 文件合并
查看>>
redis缓存Hash操作的在主数据中的应用
查看>>
mongodb之副本集搭建
查看>>
推荐 10 个饱受好评且功能独特的开源人工智能项目
查看>>
移动web开发之像素和DPR
查看>>
css百叶窗滚动
查看>>
关于软考的一些事,你知道吗?
查看>>
ERP系统“数字排产”功能,实现企业高效排产
查看>>
Linux基础命令
查看>>