Question: In C++ Given the following grid, Implement a function string findInGrid(char c, char grid[6][6]) to find the index of a particular character. Ex: findInGrid('A', grid)
In C++
Given the following grid,

Implement a function string findInGrid(char c, char grid[6][6]) to find the index of a particular character.
Ex: findInGrid('A', grid) will return "00"
Ex: findInGrid('0', grid) will return "42"
You cannot write 36 switches.
4 56 7 8 9|
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
