I have a function to multiply arrays. The function is multiply
:
void multiply(int array1[][], array2[][]);
But it doesn't work.
for example I have to arrays
int array1[4][10]
int array2[10][6]
multiply(arra1[4][10], array2[10][6])
But it doesn't works.
I need call de function with any size.
later I need to call the function with:
int array3[5][5]
int array4[5][5]
multiply(arra1[5][5], array2[5][5])
How do I get the arrays in the function?
multidimensional array must have bounds for all dimensions except the first
And i need variable rows and variabloe columns