出了六道题 1.填空题:结构体占字节大小 struct s{ char a[5]; int b; short c; };//(呜呜,当时我没考虑对齐) 2.填空题:下面语句输出是啥 unsigned short a = 0x100; unsigned int b = 0; do{ a--; b++; }while(a>=0) printf(" %u\n" ,b); 3.编程题:手写大小端...