240 发简信
IP属地:安徽
  • Struct和typedef struct

    在C中定义一个结构体类型要用typedef: typedef struct Student { int a; }Stu; 于是在声明变量的时候就...