去评论
距米网-精简版

结构型变量的定义和引用

阿尔法2018
2018/06/17 11:18:26
本帖最后由 阿尔法 于 2018-6-17 11:19 编辑

结构型变量的定义
方法:先定义结构型、后定义变量
  1. struct  student
  2. {
  3.     int id;
  4.     char  name[20];
  5.     int  age;
  6. };
  7. struct  student  x , y;