# include <stdio.h>
typedef int ZHANGSAN; //为int再多取一个名字,ZHANGSAN等价于int
int main (void)
{
int i = 10;//等价于 ZAHNGSAN //即为ZAHNGSAN i = 10;
return 0 ;
}
**************************************************************************
# include <stdio.h>
typedef struct Student
{
int sid;
char name [100];
char sex;
}ST;
int main (void)
{
struct Student st;//等价于ST st;
struct Student * ps = &st; //等价于ST * ps;
版权声明:本文为luhuochunqing666666原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。