摘要: #include <stdio.h>#include <string.h>struct test_t{ int a; unsigned b:1; int c;};int main(){ char a; int b=0x0102; int c=0x0201; a = b; printf("a=%x\n", a); struct test_t t; printf("t=%d... 阅读全文
posted @ 2012-11-08 11:57 lotus302 阅读(140) 评论(0) 推荐(0) 编辑