C语言_郝斌课程_学生管理系统
# define _CRT_SECURE_NO_WARNINGS//用 scanf_s 会出错# include <stdio.h># include <malloc.h>struct Student{ int age; float score; char name[100];};int main(void){ int len; struct Student* pArr; int i; int j; struct Student t; pr