(Shuffle rows) Write a function that shuffles the rows in a two-dimensional int array using the following header:
void shuffle(int m[][2], int rowSize);Write a test program that shuffles the following matrix:int m[][2] = {{1, 2 }, {3, 4 }, {5, 6 }, {7, 8 }, {9, 10 }};
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.