关键函数:
fread();向文件读数据。
fwrite();向文件写数据。
#include<stdio.h>
#include<stdlib.h>
#define Size 10
struct Student_type
{
char name[10];
int num;
int age;
char add[10];
}Stu[10];
void save()
{
FILE *fp;
int i;
if ((fp = fopen("file1", "wb")) == NULL)
{
printf(