int x, y; int array[10][3]; main() { for ( x = 0; x < 10; x++ ) /* changed */ for ( y = 0; y < 3; y++ ) /* changed */ array[x][y] = 0; return 0; }