Math, asked by ykuldeep7102, 9 months ago

Consider a rectangular array. Sort the elements in each row into increasing order. Next sort the elements in each column

Answers

Answered by sumabaijubaiju
0

Answer:Input : a[3][3] = {{1, 2, 3},

{4, 5, 6},

{7, 8, 9}};

Output : 7 8 9

4 5 6

1 2 3

Input : a[3][3] = {{3, 2, 1},

{9, 8, 7},

{6, 5, 4}};

Output : 7 8 9

4 5 6

1 2 3

Step-by-step explanation:

Similar questions