-
-
What is friend function?
As the name suggests, the function acts as a friend to a class. As a friend of a class, it can access its private and protected members. A friend function is not a member of the class. But it must be listed in the class definition.
-
-
Register Relation
Why p++ is faster than p+1?
-
-
-
-
-
Constructor initialization lists
What is advantage of using Constructor initialization lists?
-
Matrix Operation using Operator Overloading
Write a program for four atrithmetic operations in matrix using operator overloading.
What is abstraction?
Abstraction is of the process of hiding unwanted details from the user.
What is out put of C++ code?
cclass base
{
public:
virtual void display(int i = 10)
{
coutInheritance in C++
While doing inheritance in C++, one thing that is not inherited is what?
Static Polymorphism
What is Static Polymorphism? Give its syntax and simple example.
Ans