结构型变量的定义和引用
本帖最后由 阿尔法 于 2018-6-17 11:19 编辑
结构型变量的定义
方法:先定义结构型、后定义变量
- struct student
- {
- int id;
- char name[20];
- int age;
- };
- struct student x , y;