Source Code

Design patterns

"describe a problem which occurs over and over again in our environment, and then describe the core of the solution to that problem, in such…

Message Digest Utility

This is a special console based utility which will calculate the Message Digest, Base 64 Encoding and Decoding, Checks the Message Digest and give output…

Chess – Knight’s Tour Implementation in C++

Chess – Knight’s Tour Implementation in C++

This C++ program is tour of knight on 64 square of chess board.  The goal is to place a knight on an empty chess board…

Implementation of various Sorting Algorithms in C++

This is a C++ implementation of various sorting algorithms. The list of algorithms include Bubble Sort, Heap Sort, Selection Sort, Insertion Sort, Quick Sort, Merge…

Address Book

This is graphic C program that can be used to store personal information of people such as name, telephone, mobile, fax, city and country.

Birthday Reminder – C++ Program

The Birthday Reminder program is a simple console-based application written in C++. Its purpose is to help users keep track of important dates, such as…

Number Conversions

This is another one of my numerical analysis university assignments. It is an extension of binary to decimal conversion code. The program converts a number…

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…