Operators in C++C++ is a powerful programming language that provides several operators to manipulate data. Operators are symbols or keywords that perform specific operations on one or more operands. In this blog, we will explore the different types of operators in C...Apr 30, 2023·3 min read
Destructor/ in C++When an object is about to be destroyed, a member function called the destructor is automatically called. Destructors are hence the final functions to be called before an object is destroyed. Characteristics of Destructor: Destructor function is aut...Mar 10, 2023·2 min read
Constructor in C++When an object is created in C++, a specific function called the constructor is immediately called. In general, it is utilised to initialise new objects' data members. In C++, the class or structure name serves as the name of the constructor. When cr...Mar 5, 2023·3 min read
Abstraction in C++One of the most fundamental and significant components of C++ object-oriented programming is data abstraction. Abstraction refers to hiding the details and presenting simply the most important facts. Data abstraction is the process of exposing to the...Mar 4, 2023·3 min read
Encapsulation in C++The wrapping up of data and information into a single unit is referred to as encapsulation in the C++ language. Encapsulation is the bringing together of the data and the functions that manipulate them in object-oriented programming. Consider a pract...Feb 20, 2023·4 min read
Function Overloading VS Function OverridingFunction overloading and function overriding are two important concepts in C++ that allow us to write more flexible and modular code. Although they share similarities in the name and the fact that they involve multiple functions with the same name, t...Feb 19, 2023·3 min read
Polymorphism in C++Having multiple forms is what the word "polymorphism" signifies. Polymorphism may be simply defined as the capability of a message to be presented in more than one form. A individual who may have many traits at once is an example of polymorphism in t...Feb 18, 2023·3 min read