摘要: 指向函数的指针 函数指针数组 阅读全文
posted @ 2020-05-21 16:06 jason2018 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 1 #include <stdio.h> 2 #define N 5 3 struct Student { 4 char name[20]; 5 int num; 6 char sex; 7 int age; 8 char department[20]; 9 }; 10 void inputStud 阅读全文
posted @ 2020-05-21 11:54 jason2018 阅读(314) 评论(0) 推荐(1) 编辑