Assume that columns is set to 3 in Visual Studio. The goal of the program is to move the value "T" (for true) into the player_1_has_won variable if player1 has won the game. If player1 has NOT won the game, then the value "F" (for false") should be moved into the player_1_has_won variable. As long as the correct value ("T" or "F") is always moved into the player1_has_won variable based on the state of the game board, then the program is correct. Here is some of the code for the program. This program may or may not be correct