using namespace std;
const int ROW = 3;
const int COL = 2;
void showValues(int table[][COL]);
int main()
{
int table[ROW][COL] = {{2,4}, {6, 8}, {10, 12}};
showValues(table);
}
void showValues(int table[][COL])
{
for (int i = 0; i < ROW; i++)
{
for (int j = 0; j < COL; j++)
{
cout << table[i][j] << "\t";
}
cout << endl;
}
}