和普通的变量数组做形参是一样的 比如 struct aaa{ int m; int n;};定义函数 void func(struct aaa p[10]){ p[1].m=1;//函数内的使用。 p[1].n=2;}调用的时候 struct aaa x[10];func(x);