-2
如何使用結構作爲函數的參數?我嘗試這樣做:使用structura作爲函數的參數
struct
{
char name[30];
char section[20];
float grade;
}student[30];
讀取和存儲信息的結構之後,我打電話將數據寫入到一個文件中的函數:
show(f,n,student); //n is the number of students
這是展示功能:
void show(FILE *f,int n, struct elev);
{
...
}
謝謝。
看看http://stackoverflow.com/questions/13823886/c-passing-struct-as-argument –
你真的應該花幾個小時閱讀一本好的C編程書籍。 –