hey can somebody explain what this declaration means:
int** mult_matrix(int A[2][2], int B[2][2])
its thr prototype for a function to multiply 2 matrices..but i dont understand what this declaration of pointers means..
int** mult_matrix(int A[2][2], int B[2][2])
its thr prototype for a function to multiply 2 matrices..but i dont understand what this declaration of pointers means..
Comment