Showing posts with label games. Show all posts
Showing posts with label games. Show all posts

Tick Tac Toe Game Soruce Code

By // No comments:
Thumbnail
Tic Tac is a paper-and-pencil game for two players with X and 0 the player who  succeed in placing  3 marks in horizontally ,vertically or diagonally win the game . We convert this game In to C++. In this  game there are two players .Code is in very simple way read the full code below. Game is develop by students of  Comsats University #include <iostream> using namespace std; char square[10] = {'o','1','2','3','4','5','6','7','8','9'}; int checkwin(); void...

Digital Stop-Watch Program

By // No comments:
Thumbnail
Digital Stop watch in C++ is not very difficult using libraries and build in functions which make this program so easy to create and understand even new beginner programmers can also understand it .We create this program as easy as possible if you have any query comment below . you can also convert it to simple c . #include<conio.h> #include<process.h> #include<iostream> #include<dos.h> using namespace std; int h=0,m=0,s=0,ms=0; // Hours mins sec and...

Pacman Game In C++

By // 1 comment:
Thumbnail
pacman is one of the most famous game in all over the world . In this game there is a pac-man ( H) and Eater (E) .Eat the dots produced by the Eater to gain points . If your pac-man get collapse with eater game will over . You move your hero with arrow keys and keep running away from eater and eat the dots to increase points . You can select one of three difficulty  modes  to make game more interesting. This program is in object oriented approach focus...