i dont know whats mean "unsigned :5",
for example if i create these:
int a:8;
unsigned b:8;
is b a integer?
and another question:
in a union with these values:
union
{ long quad;
long duble;
char byte;
struct {
unsigned :16;
unsigned :16;
unsigned :16;
unsigned :15;
unsigned bit1:1;
} bits;
}pes;
pes.quad=0x12345678;
pes.duble=0xabcd;
pes.byte=0xef;
pes.bits.bit1=1;
why in Adress
is: ef ab 00 00 cc cc cc cc
I thought it would be ef ab 34 12 00 00 00 80