本题和上一题一样,只是将二维数组改成了指针( score[0][0]表示p[0],score[0][1]表示p[1] ),方法也和上一题一样 代码表示: #include <stdio.h>#define CLASS 3#define STU 4int FindMax(int *p, int m, int n, int *pRow, int *pCol);int main(void){int score[CLASS][STU], i, j, ...