Please have a look at the following articles i.e. polymorphism and inheritance in C++ which is really…
cpp
Unlike java where the object for the class can be declared only in the heap, C++ allows…
In this article, I will give an introduction to the object oriented programming and we will see…
In this article, we will see how to synchronize two threads using the mutex and conditional variables….
In this article, we will see how to implement strtok() function in C/C++ What is strtok Strtok…
The meaning of the auto keyword is changed in C++ 11. Before C++ 11 Prior to C++…
volatile is a pre-defined keyword that is used to specify that the value in the variable may…
A reference is just giving another name to an existing object or variable. There is nothing we…
Constructors are the special type of methods that get called when we create an instance for a…
What is a class? A class is an object-oriented paradigm or model used to group both data…