我的编程学习日志(7)--typedef的扩展
2014年9月20日
gojuukaze
评论:0
阅读:1639
typedef最常见的用法就是: typedef int I; typedef struct student stu; typedef struct student* pstu; 不过我们有时也会见到这样的用法 typedef struct student { int a; … } stu; 其实这...