I\'ve declared my function where I want to find the minimum from diagonals [0][0] ... [5][5] and [0][5]... [5][0]. I have the algorithm but my problem is with the actual fun
double minimum(int rowsize,int size, double x[rowsize][size]){...}
or simply
double minimum(int rowsize,int size, double x[][size]){...}
So specifying rowsize
is optional.
But here I guess it is square size x size
so it will be
double minimum(int size, double x[][size]){...}
So you are correct in that.
minimum(10,x)