如果有个结构体如下:
struct stud{ char name[20]; char num[15]; char age[3]; char addr[15]; struct stud *next; }stu[3];
输入数据后用文件保存,当要从文件里读出数据时,该怎么样把三个对象的数据分开?