c试题-下面关于“联合”的程序的输出是什么

#include 

union
{
    int i;
    char x[2];
}a;

void main(void)
{
    a.x[0] = 10;
    a.x[1] = 1;
    printf("%d\n", a.i);
}

网友评论0