#include #define SIZE 10 struct student_type {char name[10]; int num; int age; char addr[15]; }stud[SIZE]; // 定义全局结构体数组stud,包含10个学生数据 void save( ) // 定义函数save,向文件输出SIZE个学生的数据 {FILE *fp; int i; if((fp=fopen ("stu.dat","wb"))==NULL) // 打开输出文件atu_list {printf("cannot open file\n"); return; } for(i=0;i