【C语言】typedef的基本用法

tech2024-10-07  19

作用: 给已定义的变量类型起个别名 举例:

typedef unsigned char uin8_t;typedef struct Student { int iVariable; }Stu; 变量声明:Stu stu1; 如果没有typedef:struct Student stu1
最新回复(0)