typedef struct stu
{
int age;
char name[20];
}stu,*pstu;
stu stu1;相当于struct stu stu1;
pstu pstu1;相当于 struct stu *pstu1;
定义了一个结构体别名和一个结构体指针别名。