Write function checkHorizontal to count how many discs of the opposing player would be flipped, it should do the following in C programming 8x8 othello board a. Return type void b. Parameter list i. int row ii. int col iii. char board[ROW][COL] iv. Structure Player (i.e. player) as a pointer c. If the square to the left or right is a space, stop checking d. If the square to the left or right is the same character as the player’s character, stop checking e. If the square to the left or right is not the same character as the player’s character, flip the disc (i.e. X becomes O, O becomes X)void updateHorizontal(int row, int col, char board[ROW][COL], struct Player *player)

Answer :

Other Questions