【C语言】- 自定义类型:结构体、枚举、联合

【C语言】:

操作符(https://mp.csdn.net/editor/html/115218055)

数据类型(https://mp.csdn.net/editor/html/115219664)

自定义类型:结构体、枚举、联合(https://mp.csdn.net/editor/html/115373785)

变量、常量(https://mp.csdn.net/editor/html/115230188)

分支、循环语句(https://mp.csdn.net/editor/html/115234118)

字符串+转义字符+注释(https://mp.csdn.net/editor/html/115231391)

指针(https://mp.csdn.net/editor/html/115281303)

数组(https://mp.csdn.net/editor/html/115266750)

函数(https://mp.csdn.net/editor/html/115265396)

 

内容来自   B站  C语言教学视频   https://www.bilibili.com/video/BV1RX4y1u7Zh

 

 

 

 

自定义类型:结构体、枚举、联合

1.结构体

结构体类型的声明

结构的自引用

结构体变量的定义和初始化

结构体内存对齐

结构体传参

结构体实现位段(位段的填充&可移植性)

2.枚举

枚举类型的定义

枚举的优点

枚举的使用

3.联合

联合类型的定义

联合的特点

联合大小的计算


1.结构体

结构体类型的声明

【C语言】- 自定义类型:结构体、枚举、联合_第1张图片

结构的自引用

【C语言】- 自定义类型:结构体、枚举、联合_第2张图片

 

你可能感兴趣的:(C语言)