#include<stdio.h>
#define NOT_FIND -1
#define TOTAL_STU 8
/* 函数aver的功能为:求学号为stuNo的学生的6门课课程之平均成绩,并通过函数值返回
若未找到学生stuNo,则返回NOT_FIND */
float aver(int (*pStu)[7], int stuNo);
int main(void)
{
int student[TOTAL_STU][7
#include<stdio.h>
#define NOT_FIND -1
#define TOTAL_STU 8
/* 函数aver的功能为:求学号为stuNo的学生的6门课课程之平均成绩,并通过函数值返回
若未找到学生stuNo,则返回NOT_FIND */
float aver(int (*pStu)[7], int stuNo);
int main(void)
{
int student[TOTAL_STU][7