Implemetation of Tic Tac Toe Using C++ (Mini Skill Project Computer Programming)
Implemetation of Tic Tac Toe Using C++ (Mini Skill Project Computer Programming)
(M.P.), INDIA
A GOVT. AIDED UGC AUTONOMOUS INSTITUTE, AFFILIATED TO R.G.P.V. BHOPAL (M.P.)
NAAC ACCREDITED WITH A++ GRADE
DECLARATION
I hereby declare that the Mini skill-based project for the course COMPUTER
PROGRAMMING (3230122) is being submitted in the partial fulfilment of the
requirement for the award of Bachelor of Technology in Internet Of Things.
All the information in this document has been obtained and presented in
accordance with academic rule and ethical conduct.
I would like to express my greatest appreciation to all the individuals who have
helped and supported me throughout this lab file. I am thankful to whole
Information Technology department for their ongoing support during the Program
making, from initial advice and provision of contact in the first stages through
ongoing advice and encouragement, which led to the finals report of this lab file.
A special acknowledgement goes to my colleagues who help me in completing the
file and by exchanging interesting ideas to deal with problems and sharing the
experience.
I wish to thank our professor Dr.Sanjiv Sharma as well for his undivided support
and interests which inspired me and encouraged me to go my own way without
whom I would be unable to complete my project.
At the end, I want to thank my friends who displayed appreciation to my work and
motivated me to continue my work.
Devanshu Gupta
SKILL-BASED MINI PROJECT
Code:
#include<iostream>
using namespace std;
char square[10] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9' };