typedef struct

typedef struct Student{

int age;

char* name;

}Stu; //这里的Stu相当于struct Student的别名

Stu student1;

原文地址:https://www.cnblogs.com/johnsblog/p/3009597.html