typedef的基本用法

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

  1. typedef unsigned char uin8_t;
  2. typedef struct Student
    {
    int iVariable;
    }Stu;
    变量声明:Stu stu1;
    如果没有typedef:struct Student stu1

你可能感兴趣的:(C语言,c语言)