9. write function isoutflank to do the following a. return type integer b. parameter list i. 1-d character array (i.e. move), size 3 ii. 2-d character array (i.e. board), size 8 rows and 8 cols iii. character playchar c. declare local variable flank, data type integer, initialized to false d. declare local variable rowint, data type integer, set equal to function call getmoverow, passing parameter move as an argument e. declare local variable colint, data type integer, set equal to function call getmovecol, passing parameter move as an argument f. if the following are true, set local variable flank equal to true i. calling function checkhorizontal is greater than zero, 6 pass as arguments 1. rowint 2. colint 3. board 4. playerchar