本文主要是介绍c 语言 typedef 用法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
#include <stdio.h>typedef struct Student {int sid;int age;
}* PST, ST;
// PST 等价于struct Student *
// ST 等价于 struct Studentint main(int argc, const char * argv[]) {ST st;PST ps= &st;ps->sid = 0;ps->age = 10;printf("%d %d \n",st.sid, st.age);return 0;
}
输出结果为:
0 10
这篇关于c 语言 typedef 用法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!