Chinaunix首页 | 论坛 | 博客
  • 博客访问: 8032913
  • 博文数量: 594
  • 博客积分: 13065
  • 博客等级: 上将
  • 技术积分: 10324
  • 用 户 组: 普通用户
  • 注册时间: 2008-03-26 16:44
个人简介

推荐: blog.csdn.net/aquester https://github.com/eyjian https://www.cnblogs.com/aquester http://blog.chinaunix.net/uid/20682147.html

文章分类

全部博文(594)

分类: C/C++

2015-03-12 13:23:03

下面代码可能的输出结果是()
int main()
{
        unsigned x = 0x12345678;
        unsigned char *p = (unsigned char*)&x;
 
        for (int i=0; i<4; i++)
        {
                printf("%x\n", *p);
                p++;
        }
 
        return 0;
}


参考:
阅读(2058) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~