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

union

时间:2016-04-02 22:44:22      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:

#include <stdint.h>
#include <stdio.h>
union X
{
    int32_t a;
    struct
    {
        int16_t b;
        int16_t c;
    };
};

int main(){
    X x;
    x.a = 0x20150810;
    printf("%x, %x\n", x.b, x.c);
    return 0;
}

Win7 64位,codeblocks-16.01mingw-setup.exe

输出:810, 2015

union

标签:

原文地址:http://www.cnblogs.com/xuyan505/p/5348359.html

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