Write a C++ program that sorts a 2D-Array and explain your work.
Answers
Answered by
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