一级标题
二级标题
三级标题
四级标题
五级标题
段落
等宽字体#include// 定义结构体类型 struct Student { char name[20]; int age; float score; }; int main() { // 初始化结构体变量 struct Student stu1 = {"Alice", 20, 90.5}; // 访问结构体成员 printf("Name: %s ", stu1.name); printf("Age: %d ", stu1.age); printf("Score: %.1f ", stu1.score); return 0; }