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.
This is graphic C program that can be used to store personal information of people such as name, telephone, mobile, fax, city and country.
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 another one of my numerical analysis university assignments. It is an extension of binary to decimal conversion code.
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 takes the following arguments. – std::string thestlstring – int base – int base2
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 (TTT) game on a video game. So, when I learnt C/C++ programming, it was my wish to program this game myself using C/C++.
SWAT GAME /******************************************************* * MYCPLUS Sample Code – https://www.mycplus.com * * * * This code is made available as a
This C++ date class is intended to illustrate how to write a non- trivial class in C++. Even though this
First hint of object oriented programming using C++. #include <iostream.h> #include <string.h> main() { int index; float distance; char letter;
The following C++ program demonstrates the concept of constructors and destructors in C++.