c 别名 typedef
typedef 给类型换一个新的名字,更易读。
typedef struct book{ int no; char name[20]; } BOOK; BOOK b ; b.no = 1; b.name = 'wasoft'; typedef int INTER; INTER c;
typedef 给类型换一个新的名字,更易读。
typedef struct book{ int no; char name[20]; } BOOK; BOOK b ; b.no = 1; b.name = 'wasoft'; typedef int INTER; INTER c;