What do you mean by friend class & friend function in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What are the manipulators in c++?
What is a .lib file in c++?
why we cant create array of refrences
What is an html tag?
What is pair in c++?
Write a single instruction that will find the remainder of integral division when x is divided by y. Have the answer stored in z.
How many ways can a variable be initialized into in C++?
What does ctime() do?
What kind of problems can be solved by a namespace?
What does it mean to declare a member function as virtual?
What function initalizes variables in a class: a) Destructor b) Constitutor c) Constructor
class professor {}; class teacher : public virtual professor {}; class researcher : public virtual professor {}; class myprofessor : public teacher, public researcher {}; Referring to the sample code above, if an object of class "myprofessor" were created, how many instances of professor will it contain? a) 0 b) 1 c) 2 d) 3 e) 4