#include <stdio.h> /* 02 */ void func(int a[][4],int b[],int m,int n) /* 03 */程序的功能是什么

/* 01 / #include
/
02 / void func(int a[][4],int b[],int m,int n)
/
03 / { int r,c;
/
04 / b[0]=a[0][0];
/
05 / for(r=0;r<m;r++)
/
06 / for(c=0;c<n;c++)
/
07 / if(a[r][c]<b[0]){
/
08 / b[0]=a[r][c];
/
09 / b[1]=r;
/
10 / b[2]=c;
/
11 / }
/
12 / }
/
13 / void main( )
/
14 / { int array[3][4]={{50,30,100,60},{35,46,18,22},{38,96,26,70}};
/
15 / int result[3];

/
16 / func(array,result,3,4);
/
17 / printf("%d,%d,%d\n",result[0],result[1],result[2]);
/
18 */ }
运行时输出: ;
程序的功能是: 。

输出
18,1,2
功能,求数组中最小值和下标。

问题解决的话,请点下采纳