C++

A Tic-Tac-Toe program in C

#include <stdio.h> char board[ 3 ][ 3 ] = { {' 1 ', ' 2 ', ' 3 '}, {&#…