int i, j;
int arr1[8][8];
//This will allow you to input the numbers individually to fill the array.
for (i = 0; i <= 7; i++)
for (j = 0; j < = 7; j++)
cin >> arr1[i][j];
//This will output the array.
for (i = 0; i <= 7; i++)
{
for (j = 0; j < = 7; j++)
cout << arr1[i][j];
cout << endl;
}
I think thats right... try it out. customize it to fit what you need.