#include <stdio.h> // 使用typedef定义一个结构体 typedef struct { int id; char name[20]; float score; } Student; int main() { // 声明一个Student类型的变量 Student student1; // 给结构体变量赋值 student1.id = 1; strcpy(student1.name, "Alice"); student1.score = 90.5; // 输出结...