Source Code

C++ Convert a number from base A to base B

C++ Convert a number from base A to base B

This is a C++ class which has a member function that takes 3 arguments and converts the number from first base to second base. It…

C++ Program to demonstrate SnakeMan game

It is a snake game same as in Nokia Mobile Phones written n C++ using Turbo C++ compiler. I assure that you would love it.…

ballonpoking(A GAME IN C++)

This game will help all new C Language Programmers in understanding the concepts of graphics and object oriented programming in C++. So play and enjoy............…

TIC-TAC-TOE Enhanced Version – C++

This is an enhanced version of Tic-Tac-Toe (TTT) game by adding one more row and column. Actually I have played this newer version of Tic-Tac-Toe…

SWAT GAME

SWAT GAME[crayon-6797de2edd40a445611791/]

Non-Trivial Class in C++

This C++ date class is intended to illustrate how to write a non- trivial class in C++. Even though this class is non-trivial, it is…

OOP: Object Oriented Programming: Source Code

First hint of object oriented programming using C++. [crayon-6797de2ede288198373386/] Output of the C++ Program: Result of execution The value of index is -23 The value…

Constructors and Destructors – C++ Source Code

The following C++ program demonstrates the concept of constructors and destructors in C++.