建一存储学生信息(包含姓名和年龄)的线性表,要求用顺序存储结构实现,并将该表中的信息显示出来
线性表的定义:
#define maxlen 500
typedef struct _studentInfo
{
char name[20];
int age;
}studentInfo;
typedef struct _student
{
studentInfo stu[maxlen];
int len;
}student;
int main()
{
student stu[10]
}