Пример за работа со дводимензиони полиња МАТРИЦИ - печатење

#include <iostream>
using namespace std;

int main()
{
int pole[2][2];

int i, j;
pole[0][0]=23;
pole[0][1]=34;
pole[1][0]=65;
pole[1][1]=74;
 

for(i=0; i<2; i++)
for(j=0; j<2; j++)
    cout<<pole[i][j]<<endl;

return 0;
}