摘要: 1 #include 2 3 #define LEN 20 4 5 struct names{ 6 char first[LEN]; 7 char last[LEN]; 8 }; 9 10 struct guy{11 struct names handle;12 char favfood[LEN];13 char job[LEN];14 float income;15 };16 17 int main(void)18 {19 struct guy fellow[2] = 20 {21 {{"Ewen", "... 阅读全文
posted @ 2013-09-23 19:22 owen-beta 阅读(262) 评论(0) 推荐(0) 编辑