Can you tell me how do I ouput array's each row? I tried using two do's to make C++ output another row only when the first one is finished in that way:
1 2 3 4 5 6 7 8 9 10 11
int z = 0, x = 0;
do
{
do
{
cout<<Array[z][x];
x++;
}while(x != 6);
z++;
}while(z != 5);