Computer Science, asked by 70109423, 2 days ago

Write a C++ program that sorts a 2D-Array and explain your work.​

Answers

Answered by AdityaYaduvanshi5545
0

Explanation:

Valid C/C++ data type. We can declare a two dimensional integer array say 'x' of size 10,20 as: int x[10][20]; Elements in two-dimensional arrays are commonly referred by x[i][j] where i is the row number and 'j' is the column number.

Similar questions