摘要: 结构与函数 程序1 结构变量与函数 // 34-1结构变量与函数.c #include <stdio.h> #include <string.h> struct Student { char name[9]; char sex[3]; int age; }; void fun(struct Stud 阅读全文
posted @ 2021-11-13 20:58 httpcc 阅读(71) 评论(0) 推荐(0) 编辑