What are initializer lists in C++?
What are initializer lists in C++?  1. Initializer list is used to initialize data members of a class. 2. The list of …
26 FebruaryWhat are initializer lists in C++?  1. Initializer list is used to initialize data members of a class. 2. The list of …
Nitish Sahni 26 FebruaryFile Handling in C++ using Class You should know about data persistence and life of data inside a program before knowin…
Nitish Sahni 21 FebruaryTemplates in C++ 1. The keyword ' template ' is used to define function templates and class templates in C++.…
Nitish Sahni 16 FebruaryAbstract Class in C++ 1. A class containing at least one pure virtual function is called an abstract class in C++ . …
Nitish Sahni 14 FebruaryPoints to know before gathering information about virtual function. Base class pointer can point to the object of any o…
Nitish Sahni 13 FebruaryMethod Overriding or Function Overriding in C++ In this tutorial you will come to know all about method overriding in C…
Nitish Sahni 12 FebruaryNew and Delete Operator in C++ 1. new operator is used to allocate memory dynamically at run time. This is called DM…
Nitish Sahni 11 FebruaryThis Pointer in C++ with simple example program Before knowing about ' this ' pointer in C++, let us first know…
Nitish Sahni 10 FebruaryConstructor and Destructor in Derived Class in C++ We know that constructor is invoked implicitly when an object is cre…
Nitish Sahni 09 FebruaryFriend Function in C++ 1. Friend function is not a member function of a class to which it is a friend. 2. Friend functi…
Nitish Sahni 07 FebruaryOperator Overloading in C++ 1. When an operator is overloaded with multiple jobs, it is known as operator overloading. …
Nitish Sahni 07 February