Computer Science, asked by pokemon57, 1 year ago

c program for grid game

Answers

Answered by raghakeshini05
0

Answer:

for (j = 0; j < NUM_ROWS; j++)

{

  for (k = 0; k < NUM_COLS; k++)

  {

     printf("&#37;2c", grid[j][k]);

  }

  printf("\n");

}

Explanation:

c program for grid game

THIS IS THE CORRECT CODING

Similar questions