Consider a rectangular array. Sort the elements in each row into increasing order. Next sort the elements in each column
Answers
Answered by
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
Environmental Sciences,
5 months ago
Math,
11 months ago
English,
11 months ago
Social Sciences,
1 year ago
Math,
1 year ago
Social Sciences,
1 year ago