All Questions
1 question
3
votes
3
answers
1k
views
How to pass a two-dimensional array to a function in C?
My function prototype is
int** rotate(int **arr, int row, int col, int fl);
where arr is the two dimensional array, row and col is the number of row and columns of the 2D array respectively, fl is a ...