C++ Top android apps to learn C++ programing Hello everyone, In today’s article we will learn about the top 5 android apps to learn c++ programming. In the…
C++ Why you should learn c++ in 2021 I think there is the enormous reason behind learning c++ in 2021 because people are still using c++ in many…
C++ Friend Class and friend function in c++ As we know that a class cannot access the private members of other classes. Similarly, a class that doesn’t inherit…
C++ Interfaces in c++ Abstract classes are the way to achieve abstraction in C++. Abstraction in C++ is the process to hide the internal…
C++ Abstraction in C++ Data Abstraction is a process of providing only the essential details to the outside world and hiding the internal details,…
C++ Encapsulation in C++ Encapsulation is a process of combining data members and functions in a single unit called class. This is to prevent…
C++ Virtual Function in C++ A C++ virtual function is a member function in the base class that you redefine in a derived class. It…
C++ function overloading and function overriding in c++ function overloading and function overriding provides a way to achieve polymorphism concept. if you want to more about polymorphism click…
C++ Polymorphism in c++ The term “Polymorphism” is the combination of “poly” + “morphs” which means many forms. It is a greek word. In…
C++ Inheritance in C++ The capability of a class to derive properties and characteristics from another class is called Inheritance. Inheritance is one of the…