码迷,mamicode.com
首页 > 其他好文 > 详细

用联合确定计算机的字节顺序

时间:2015-04-14 10:01:37      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:c   字节顺序   

#include <stdio.h>

union
{
    long Long;
    char Char[sizeof(long)];
} u;

int main(void)
{
    u.Long = 1;
    if (u.Char[0] == 1) {
        printf("Addressing is right-to-left\n");
    }
    else if (u.Char[sizeof(long) - 1] == 1) {
        printf("Addressing is left-to-right\n");
    }
    else {
        printf("Addressing is strange\n");
    }

    return 0;
}

用联合确定计算机的字节顺序

标签:c   字节顺序   

原文地址:http://blog.csdn.net/ieearth/article/details/45037047

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!