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
相關文章
相關標籤/搜索