数据结构之typedef在结构体中的用法

Posted baoyingying

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数据结构之typedef在结构体中的用法相关的知识,希望对你有一定的参考价值。

/*
    2019年10月12日19:25:25
    说明:typedef在结构体中的应用
*/
#include<stdio.h>
typedef struct Student
{
    char name[9];
    int age;
}STU,*PSTU; //STU相当于struct Student,PSTU相当于struct Student *
int main(void)
{
    STU st; // 相当于struct Student st;
    PSTU pst = &st; //相当于struct Student *pst
    strcpy(pst->name,"蜡笔小新");
    pst->age = 5;
    printf("%s今年%d岁了 ",pst->name,pst->age);
    return 0;
}

以上是关于数据结构之typedef在结构体中的用法的主要内容,如果未能解决你的问题,请参考以下文章

C语言结构体中struct和typedef struct有啥区别?

在程序中用typedef定义结构体

C语言中typedef定义结构体指针的区别?

在标准C中,typedef 一样的结构体取两个不同的别名,编译会报错吗?怎么解决?

结构体中函数指针与typedef关键用途(函数指针)

数据结构与算法基础之typedef的用法