- 1
can someone help? please
Write a program to sort the rows in a 3 by 3 two dimensional array. A new array is returned. The original array is intact. Use the following information for the program. const int SIZE = 3; void sortRows(const double m[ ][SIZE], double result[ ][SIZE]); The user will enter a 3 by 3 matrix of double values and display a new row-sorted matrix as an output. A sample output:
1 Answer
0
Just write a program fitting the requirements. Google what "const" and "sortRows" are and how they work so that you understand it clearly.
It's always better trying to run after your own conclusions