Below is my code for Tic Tac Toe, but I can't seem to be able to start the game. Using a vector to set alphabetical positions to each square in the board, it's been set. I compile it and run it with one position from the letters 'a' through 'i', but it won't display 'x' as the first player's letter. So it just ends.
#include <iostream>
#include <vector>
using namespace std;
const bool CLEAR_SCREEN = true;
/// @brief Utilizes an escape character sequence to clear the screen