Assume you already have code that generated a 2d char array…
Assume you already have code that generated a 2d char array named grid sized at 10 (variable called SIZE). You do not need to write the code that creates or prints the grid. You are not required to write a main function. Assume it’s already written. One possible grid print out is shown below. Write the code to locate all ‘F’s in any given 2d array (called grid). Print the x and y coordinates of each location you found. For example, the location of the first coordinate (top, left) in the grid is 0,0. F………………..F…………………………F……….A………..F..F…………………
Read Details