Bank Management System Program in C++

If you are looking for small school or college level project, this Bank Management System can be a good start. This is a simple project where you can implement a bank management system which has following features: Account management: Create and Delete accounts. Deposit amount. Withdraw amount. Balance enquiry. Modify existing accounts. List all accounts. … Read more

C++ Program for Tower of Hanoi

What is Tower of Hanoi? The Tower of Hanoi (also called the Tower of Brahma or Lucas’ Tower, and sometimes pluralized) is a mathematical game or puzzle. It consists of three rods, and a number of disks of different sizes which can slide onto any rod. The puzzle starts with the disks in a neat … Read more

SuperMarket Billing System in C++

This mini project is written in C++ where you find mainly two classes one class item another class amount and class amount is inheritance form class item.It is simple console application without graphics. From this project you learn file handling in c++ and use of stream class.And main defect of this program is that goto label  is used to … 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

Drawing Taj Mahal C++

Wonder of the World Drawing Taj Mahal C++ Code   This code is compiled in Turbo C++ so this may not execute on newer compilers like GCC. You can download Turbo C++ to run this code   PROGRAM: #include<graphics.h> #include<conio.h> #include<dos.h> #include<stdlib.h> #include<process.h> main() { int gd=DETECT,gm; initgraph(&gd,&gm,"f:\tc\bgi"); int h=40; line(0,440,639,440); //=================================Ist tower========================// //=================================IIst tower============================// … 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