#include #define SIZE 10 struct student_type {char name[10]; int num; int age; char addr[15]; }stud[SIZE]; // 定义全局结构体数组stud,包含10个学生数据 void load( ) {FILE *fp; int i; if((fp=fopen("stu_list","rb"))==NULL) // 打开输入文件stu_list {printf("cannot open infile\n"); return; } for(i=0;i