c语言 结构体动态建立

1 #include<stdio.h> 2 #include<malloc.h> 3 struct Student 4 { 5 int num; //学号 6 int total; //总分 7 char name[20]; //姓名 8 float score[3]; //3个课目的分数 9 }; 10 11 int main() 12 { 1
相关文章
相关标签/搜索