// Program create on visual studio consol application.// Project: create Tic Tac game.// university: Govt. College university.// Department of computer science.// submitted by: Muhammad Ateek.// Roll number: 03-bscs-2011// sysmester: 1st#include"stdafx.h"#include <iostream> // directory for input and output#include <cstdlib> // directory to generate random numbers.#include <time.h> // directory to generate seconds as a seeds of random number#include <windows.h> // directory for clr screeen. and sounds.#include <string> // directory to get string type names of players.#include <conio.h>void computer();int checkWinner();void drawBoard();using namespace std;int option, test, row, col,turn, with, option2 =0;string player1,player2;char...