摘要: 练习12-1 /* 用表示学生的结构体来显示高尾的信息 */ #include <stdio.h> #define NAME_LEN 64 /* 姓名的字符数 */ /* 表示学生的结构体 */ struct student { char name[NAME_LEN]; /* 姓名 */ int h 阅读全文
posted @ 2019-11-26 23:33 nightswatch-candle 阅读(1281) 评论(0) 推荐(1)