Multidimensional Arrays
What is a 2D Array?
A 2D array is like a table (rows and columns).
google.com, pub-8434817042454839, DIRECT, f08c47fec0942fa0
Example
int arr[2][2] = {
{1, 2},
{3, 4}
};
{1, 2},
{3, 4}
};
Access Example
cout << arr[0][1]; // Output: 2
Use Case
Matrices, tables, grids

