作者在 2013-03-17 23:21:39 发布以下内容
struct是一种类型(结构体类型)与int、float一样的,它是为了解决C语言类型单调而设计的。在它里面可以出现int、string类型等C语言类型。使用它不需要定义,常常用它定义结构体。如定义一学生结构体:
struct students
{
int age;
int Number;
char name[20];
}
还可以通过结构体建立C语言的灵魂——链表
如:struct student
{int data;
struct student *next;
}
struct students
{
int age;
int Number;
char name[20];
}
还可以通过结构体建立C语言的灵魂——链表
如:struct student
{int data;
struct student *next;
}