Number Conversions
This is another one of my numerical analysis university assignments. It is an extension of binary to decimal conversion code. […]
This is another one of my numerical analysis university assignments. It is an extension of binary to decimal conversion code. […]
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 birthdays, by allowing them to add, delete, and view reminders associated with individuals.
This is graphic C program that can be used to store personal information of people such as name, telephone, mobile, fax, city and country.
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 Sort and Shell Sort. A brief description of each sorting algorithm is listed below along with their complexity.
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 and then move the knight to each of the remaining 63 squares while only visiting each square once. Â If on visiting the last square the knight is able to hop to the square on which it first started it is known as a closed tour (and so the knight could resume the exact same sequence of moves to complete another tour) while if the knight is unable to hop to the original square, it is known as an open tour.Â
This is a special console based utility which will calculate the Message Digest, Base 64 Encoding and Decoding, Checks the
“describe a problem which occurs over and over again in our environment, and then describe the core of the solution
This is a very basic C++ program that demonstrates data protection in a very simple way. Data protection in Object Oriented Programming is controlling access to all attributes is one of the most important concepts of object-oriented design
This is a simple C++ program to make a car race game. It uses object oriented approach to generate different objects in the game such as using Car, Obstacle and Timer classes.
How to create the mouse pointers in c language. Different shapes can be given to the mouse pointer by changing the values of the cursor variable array.
This C code provides a simple and customizable implementation for creating text boxes that can be used to display tips, hints, or information in a game or application. The code is designed to be beginner-friendly and easy to integrate into C programs.
This is telephone directory program written in C and uses BGI Graphics to display data. The program takes Name, Phone Number, Mobile Number, Address and saves it in newly created file. The program also shows saved record on screen. User can find and delete the records too.