C++ Programming

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…

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-672c6eeb7d90f316985843/]

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-672c6eeb7e087697576600/] 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++.

Simple class program

Simple class program[crayon-672c6eeb7e725446680486/]

Multiple inheritance

In order to keep the program as simple as possible, all of the member methods are defined as inline functions.? This puts the code for…