Tic Tac Game Computer Science

Computer science project
TIC TAC Game

Name –KUMAR VARUN
Class- xi B
Roll no- 16
Bal Bhavan Public School
Introduction

This Project is of Quiz Game coded on most popular programming language C++.
This Program is consisting of loop, Switch case, Array and structures.
At Various place comment is mentioned to describe the use of particular things.


Certificate

This is to certify that Kumar Varun student of Class XI’B’, Bal Bhavan Public School has completed the project titled Tic Tac Game  during the academic year 2012-2013 towards partial fulfilment of credit for the Computer Science project evaluation and submitted satisfactory report, as compiled in the following pages, under my supervision.

Mrs Shruti Jain
Department of Computer Science
Bal Bhavan Public School
Mayur Vihar Phase 2

Acknowledgement

I would like to express my sincere gratitude to my Computer Science mentor Mrs Shruti Jain, for her vital support, guidance and encouragement – without which this project would not have come forth. I would also like to express my gratitude to the staff of the Department of Computer Science for their support during the making of this project.

Preface

This Project is of Quiz Game coded on most popular programming language C++.
This Program is consisting of loop, Switch case, Array and structures.
At Various place comment is mentioned to describe the use of particular things.
Quiz is played by various   children and adults to gain their knowledge and for entertainment purpose.

Bibliography

I have taken reference from two books which are mentioned below:-
1. Computer Science with c++ , Publisher:- SUMITA ARORA
2. InterNet (Google.com)

#include <iostream.h>
#include <conio.h>

char square[10] = {'o','1','2','3','4','5','6','7','8','9'};
int checkwin();
void board();

int main()
{
int player = 1,i,choice;
char mark;
clrscr();
do
{
board();
player=(player%2)?1:2;
cout <<...