Carry out conversion of one object of user-defined type to another?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between operator new and the new operator?
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
Evaluate: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); a) 10 b) 11 c) 1
Is c++ a float?
What is c++ library?
How can we check whether the contents of two structure variables are same or not?
Is it possible to pass an object of the same class in place of object reference to the copy constructor?
Where can I run c++ program?
What is null and void pointer?
What's c++ used for?
What is a container class?
What is vectorial capacity?