c語言 結構體作爲函數參數

1.demo:計算成績及格的學生個數 #include <stdio.h> #include <stdlib.h> struct Student{ //建立結構體類型struct Student char name[15]; //名字 char id[15]; //學號 int score; //成績 }temp; int judge_pass(struct Student a,int num)
相關文章
相關標籤/搜索