姓名学号班级说明: 1. 本次上机内容分两次上机完成。2. 将本文档改名为“学号_姓名_班级”,根据本说明完成以下实验内容;3. 在 16 周周日前通过课程中心提交本文档。实验内容和实验要求(实验指导 P148)1.练习题一运行结果截图:2.练习题二纠错:int FindMax( int score[][STU], int n, int m, int *pRow, int *pCol ) STU改为 ARR_SIZE运行结果截图:#include<>#define CLASS 3#define ARR_SIZE 40int FindMax(int score[CLASS][ARR_SIZE],int n,int m,int *pRow,int *pCol);void main(){int score[CLASS][ARR_SIZE],i,j,n,maxScore,row,col;printf("Please enter student number in a class:");scanf("%d",&n);printf("Please enter score:\n");for(i=0;imaxScore){maxScore=score[i][j];*pRow=i;*pCol=j;}}return(maxScore);}思考题及问题:① 答案:② 答案:函数文本(修改部分红色字体标注)运行结果截图:3.练习题三运行结果截图:#include<>int strlength(char *);void main(){int n1,n2;char *list1="See no evil,hear no evil,";char *list2="blind and deaf";n1=strlength(list1);n2=strlength(list2);puts(list1);printf("The length of list1=%d\n",n1);puts(list2);printf("The length of list2=%d\n",n2);}int strlength(char *s){int n=0;while(*s!='\0'){n++;s++;}return n;}思考题及问题:① 答案:② 答案:试编写 strcmp 函数,源程序文本:运行结果截图:4.练习题四运行结果截图:#include<>double cube(double);double sum(int,double(*p)(double));void main(){double (*ptr)(double);ptr=cube;printf("sum=%.2lf\n",sum(4,ptr));}double sum(int n,double(*p)(double)){double s=0;int k;for(k=1;k<=n;k++)s+=(*p)k);return s;}double cube(double x){return(x*x*x);}思考题及问题:① 答案:② 答案:源程序文本(修改部分红色字体标注)运行结果截图:5.练习题五运行结...