用指针求二维数组中的最大值最小值及其位置
// function: take array elements as input
void ReadArrData(int a[M][N], int m, int n)
{
填空1
}
// function: find the largest and smallest number in array
void FindArrData(int a[M][N], int m, int n, int *maxnum, int *minnum,int *largrowloc, int *largcolumnloc, int *smallrowloc, int *smallcolumnloc)
{
¢ß
}
程序成功运行