摘要: #include <stdio.h> //给结构体起个新名字stu typedef struct student { char name[50]; int age; int achievement; } stu; //student 可以不要 //新名字的好处,使用时简洁 int main () { 阅读全文
posted @ 2020-07-24 22:36 天子骄龙 阅读(239) 评论(0) 推荐(0)