typedef

typedef struct Student
{
    int sid;
    char name[5];
    char sex; 
}* PST, STU;//PST等价于struct Student *, STU等价于struct Student
View Code
原文地址:https://www.cnblogs.com/tkid/p/5089436.html