// Simple multidimensional array test. // Note that using vectors is simpler // pp 837-840 // No guarantees offered. Constructive comments to bs@research.att.com #include using namespace std; void print_m34(int m[3][4]) { for (int i = 0; i<3; i++) { for (int j = 0; j<4; j++) cout << m[i][j] << '\t'; cout << '\n'; } } void print_mi4(int m[][4], int dim1) { for (int i = 0; i