Hello all,
I've a small question. I wanna use a function void myfunction(int **array1, int **array2) where array1 and array2 shoud be [4][4]. I've added 2 arrays
int myarray1[4][4], myarray2[4][4];
and called my function like this: myfunction(&myarray1[0], &myarray2[0]);
I've got the following warning message :
warning: passing argument 1 of 'myfunction' from incompatible pointer type
warning: passing argument 2 of 'myfunction' from incompatible pointer type
Could you help me out please?
Thank you!