#include using namespace std; int main () { int bar[2][3] = { { 1, 2, 3}, {4,5,6} }; for (i=0; i<2; i++) { for(int j=0; j<3; j++) { cout << "bar[" << i << "][" << j << "]: " << bar[i][j] << " "; } cout << endl; } }