填空题
以下fun函数的功能是:找出具有N个元素的一维数组中的最小值,并作为函数值返回,请填空。(设N已定义) int fun(int x[N]) {int i,k=0; for(i=0;i<N;i++) if(x[i]<x[k])k= (10) ; return x[k]; }