首页 > 代码库 > 判断大端小端模式
判断大端小端模式
代码如下:
big_little_endian.c
1 #include <stdio.h> 2 3 #define BIG_ENDIAN 1 4 #define LITTEL_ENDIAN 0 5 6 int big_littel_endian(void) 7 { 8 union num 9 {10 int a;11 char b[4];12 }c;13 14 c.a = 0x1234;15 16 if(c.b[0] == 0x34)17 {18 return LITTEL_ENDIAN;19 }20 else21 {22 return BIG_ENDIAN;23 }24 25 }26 27 int main()28 {29 int cpu;30 31 cpu = big_littel_endian();32 33 if(cpu == LITTEL_ENDIAN)34 printf("cpu is Little_endian.\n");35 else36 printf("cpu is Big_endian.\n");37 }
在Linux下编译:
gcc -o big_little_endian big_little_endian.c
运行:
./big_little_endian
输出结果:
cpu is Little_endian.
判断大端小端模式
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。