What do you know about friend class and friend function?
A friend function is a function that is specified outside a class but has the ability to access the class members' protected and private data. A friend can be a member's function, function template, or function, or a class or class template, in which case the entire class and all of its members are friends.
| Is This Answer Correct ? | 0 Yes | 0 No |
What issue do auto_ptr objects address?
How do you invoke a base member function from a derived class in which you’ve overridden that function?
Is c++ built on c?
Which uses less memory? a) struct astruct { int x; float y; int v; }; b) union aunion { int x; float v; }; c) char array[10];
What is the importance of mutable keyword?
What is an orthogonal base class in c++?
What are arithmetic operators?
What is an arraylist c++?
What is the difference between a baller and a reference in C++?
Which operator cannot overload?
What is microsoft c++ redistributable?
What is conversion constructor?