Runtime type identification (RTTI)
Runtime type identification (RTTI) lets you find the dynamic type of an object when you have only a pointer or […]
Runtime type identification (RTTI) lets you find the dynamic type of an object when you have only a pointer or […]
The Standard C++ Library: Templates
You can do much more with the general I/O problem than just take standard I/O and turn it into a
Algorithms are at the core of computing. To be able to write an algorithm once and for all to work
Standard C++ not only incorporates all the Standard C libraries (with small additions and changes to support type safety), it
This is C++ Flexible Vector and Matrix (Vectors and Matrix with Arbitrary Bounds). The algorithm has been written by Alex
Bubble Sort is the most simple form of sorting algorithm that works by repeatedly stepping through the list of items (array) and swapping the adjacent elements if they are in incorrect order. This algorithm has no such real life uses due to it’s poor performance and is used primarily as an educational tool.
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++.
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