Multi Dimensional Arrays


#include "stdafx.h"
#include <iostream>

using namespace std;

// Multi dimensional arrays

int main ()
{  
  int myArray[3][5=        // An array with 3 rows and 5 columns
  {
    12345}// row 0
    678910}// row 1
    1112131415 // row 2
  };

  int newArray[][5=         //Two-dimensional arrays with initializer lists can omit (only) the first size specification
  {
    12345},
    678910},
    1112131415 }
  };

  cout<< "Values of myArray :" << endl;

  for (int i = 0; i < 3; i++)
  {
    for (int j = 0; j < 5; j++)
    {
      cout << myArray[i][j];
      cout<< " ";
    }
    cout<< endl;
  }

  return 0;
}

Output:
Values of myArray :
1 2 3 4 5
6 7 8 9 10
11 12 13 14 15