2014年9月20日
gojuukaze
评论:0
阅读:808
typedef最常见的用法就是: typedef int I; typedef struct student stu; typedef struct student* pstu; 不过我们有时也会见到这样的用法 typedef struct student { int a; … } stu; 其实这...