C语言结构体位域
摘要:
demo: typedef struct { int a:2; int b:2; int c:1; }test; int main() { test t; t.a=1; t.b=3; t.c=1; //那么赋值完成后test结构体中各变量的值是多少呢? } separation t.a=1, t.b 阅读全文
posted @ 2016-03-25 11:13 Jeffrey.Downhouse 阅读(479) 评论(0) 推荐(0) 编辑