A Simple Casino Game in C++

A Simple Casino Game in C++: Description: This is a Number Guessing Game. Player deposits an initial amount to start playing game. He guesses a number between 1 to 10 and enters betting amount. If he wins, he will get 10 times of money he bets. If he bets on wrong number, he will lose … Read more

A simple Zombie War Game in C++

Here I’ve shared a basic Zombie War Game in C++, it is a very simple game and understand the code will definitely help you learn C++. Just go through the code, it is pretty self explanatory.  Program for Zombie War Game in C++: #include <iostream> #include <stdlib.h> #include <unistd.h> #include <time.h> using namespace std; int … Read more

Console Shooting Game C++

Very simple game executed successfully on DEV-C++ 5.6.3 It has 11 levels you can try, every level the speed and the amount of “birds” is increasing.The controls are arrow keys for moving and 1 / 2 for shooting. Best Console Shooting Game C++  CODE: #include <iostream> #include <conio.h> #include <windows.h> #include <ctime> #include <vector> class game … Read more

Hangman Game C++

It is a simple project just to provide a Hang Man game concept.In this project I haven’t draw a man for a wrong choice so,try to draw a simple man by using “|” pattern in your project which make your project better . Here is the source code ,copy and compile it in Code::blocks gcc … Read more

Snake and Ladder Game C++

This code implements the classic Snake and Ladder game C++. It can be played by two players.   This program is compiled with Turbo C++, you can download it from here Turbo C++   PROGRAM to implement Snake and Ladder Game in C++: #include<stdio.h> #include<graphics.h> #include<conio.h> #include<malloc.h> #include<stdlib.h> #include<dos.h> #include<iostream.h> int k=1, i, user=0, dice=0, … Read more

Tetris game’s easy implementation in C++

Following is program to implement Tetris Game C++, this is simple code created using <graphics.h>   This program is compiled and executed in Turbo C++   C++ Program to implement Tetris Game: // Program in C++ to implement Tetris Game. #include <conio.h> #include <graphics.h> #include <dos.h> #include <stdlib.h> #include <process.h> #include <time.h> int score=0; void … Read more