常规用法
typedef oldName newName;typedef int INTEGER;INTEGER a, b;
数组、指针、结构体
typedef char ARRAY20[20];ARRAY20 a1, a2, s1, s2;// 它等价于:char a1[20], a2[20], s1[20], s2[20];
typedef struct stu{char name[20];int age;char sex;} STU;STU body1,body2;
typedef int (*PTR_TO_ARR)[4];
