/* array3.cpp CIS 250 2/6/05 David Klick Demonstration of multidimensional array. */ #include #include using std::cout; using std::endl; using std::setw; void displayMArray(int a[][3], int height, int width); int main(void) { int num[][3] = { {1, 2, 3}, {2, 4, 6} }; displayMArray(num, 2, 3); return 0; } void displayMArray(int a[][3], int height, int width) { for (int row=0; row