0

That would be okay if you were to read or modify the positions of the matrix, however you are going to modify the matrix itself. In your example, you'll need to create another matrix.
So, you need to modify the formal parameter of transpose to:
void transpose(float*** array, int rows, int colum...