首页 > 代码库 > 定义和使用结构体变量

定义和使用结构体变量

含义:由不同类型数据组成的组合型数据结构成为结构体。

1.建立结构体

技术分享
1 struct MyStruct
2 {
3     long num;
4     float score;
5         char name[20];
6         int  age;
7     struct MyStruct *netx;
8 };
View Code

2.结构体变量的定义

  (1).struct 结构体名

       {

       }变量名列表

  如:

     struct MyStruct
    {
      long num;
      float score;
      struct MyStruct *netx;
    }student1,student2;

定义和使用结构体变量