码迷,mamicode.com
首页 > 编程语言 > 详细

C++如何判断大小端

时间:2014-08-14 14:00:08      阅读:236      评论:0      收藏:0      [点我收藏+]

标签:http   os   io   ar   html   amp   c++   htm   

http://bbs.chinaunix.net/thread-1257205-1-1.html

#include <stdio.h>
#include <string.h>
#include <stdlib.h>

int main(void)
{
        unsigned short v = 0x0102;
        unsigned char *p = (unsigned char *)&v;

        if (*p == 0x01)
                printf("big\n");
        else if (*p == 0x02)
                printf("small\n");

        return 0;
}

C++如何判断大小端,布布扣,bubuko.com

C++如何判断大小端

标签:http   os   io   ar   html   amp   c++   htm   

原文地址:http://www.cnblogs.com/Billy-rao/p/3912258.html

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