Write a program to declare a Square, Matrixx a[][] of order m*n where ‘m’ is the number of rows and ‘n’ is the number of columns, such that m and n both must be greater than 2 and less than 10 . accept the value of m and n as user input. Allow the user to input the integers into Matrixx and perform the following task.
Write a program to declare a Square Matrixx, a [][] order m*n where m is the number of rows and n is the number of columns such that m and n both must be greater than 2 and less than 10 . Accept the value of ‘m’ and ‘n’ as user input and perform the following task. Display the original Matrixx. Sort each column of the matrix in ascending order using selection sort technique. Play the changed Matrixx after sorting each row.