Where did that output come from ?
Corrected version of my code from reply #1
for (int row = 0; row < 2; row++)
{
for (int col = 0; col < 3; col++)
{
Serial.print(anArray[row][col]);
}
Serial.println();
}
Where did that output come from ?
Corrected version of my code from reply #1
for (int row = 0; row < 2; row++)
{
for (int col = 0; col < 3; col++)
{
Serial.print(anArray[row][col]);
}
Serial.println();
}