各位大神好,小弟在最近的面試中碰到了這類的考題
Q:在big endian中B1.A1的值會是多少
小弟的想法是因為在little endian中會取REG_SET.B3[0]這個記憶體中的低7位,值為0x12,
所以在big endian中會取記憶體中的高7位,所以值為0x9,請問這樣的想法正確嗎
typedef unsigned char u8;
typedef unsigned short u16;
typedef unsigned long u32;
typedef union{
struct{
u8 A1 :7;
u8 :1;
u8 A2 :2;
u8 A3 :1;
u8 A4 :1;
u8 A5 :4;
u16 A6;
} B1;
u32 B2;
u8 B3[4];
} REG_SET
REG_SET.B3[0] = 0x12;
REG_SET.B3[1] = 0x34;
REG_SET.B3[2] = 0x56;
REG_SET.B3[3] = 0x78;