C语言结构体
数组是相同数据类型的一个集合
结构体是不同数据类型的一个集合,是一种自定义的数据类型。
结构体:
struct 结构体名{
成员列表
};
例如:
//结构类型:struct student,类型名:int、char,成员名:ID、name
struct student{
int ID;
char name[20];
};
数组是相同数据类型的一个集合
结构体是不同数据类型的一个集合,是一种自定义的数据类型。
结构体:
struct 结构体名{
成员列表
};
例如:
//结构类型:struct student,类型名:int、char,成员名:ID、name
struct student{
int ID;
char name[20];
};