#include using namespace std; int main(void) { int tbl [3][2]; //3 rows two columns int i, j; //fill with 0's for(i=0; i<3; i++) { for(j=0; j<2; j++) { tbl[i][j] = 0; } } //display everything in the array for(i=0; i<6; i++) cout << tbl[0][i] << endl; return 0; }