【简答题】fun函数的功能是:首先对a所指的N行N列的矩阵,找出各行中的最大数,再求这N个最大值中最小的那个数并作为函数值返回。请填空。 include <stdio.h> define N 100 int fun(int(*a)[N]) { int row,col,max,min; for(row=0;row<N;row++) { for(max=a[row] [0],col=1;col<N;col++)...
【简答题】fun函数的功能是:首先对a所指的N行N列的矩阵,找出各行中的最大数,再求这 N个最大值中的最小的那个数作为函数值返回。请填空______。 include <stdio.h> define N 100 int fun(int(*a)[N]) { int row, col,max,min; for(row=0;row<N;row++) for(max=a[row][0],col=1; col<N;...
【简答题】fun函数的功能是:首先对a所指的N行N列的矩阵,找出各行中的最大的数,再求这N个最大值中的最小的那个数作为函数值返回。请填空。 include<stdio.h> define N 100 int fun(int(*a)[N]) { int row,col,max,min; for(row=0;row<N;row++) {for(max=a[row][0],col=1;col<N;col++) i...