Explain function overloading
No Answer is Posted For this Question
Be the First to Post Answer
How to implement flags?
what is c++
Does c++ cost money?
What is scope operator in c++?
What is else syntax in c++?
What is the c++ programming language used for?
What is #include cstdlib in c++?
What are friend functions in C++?
Write a String class which has: 1) default constructor 2) copy constructor 3) destructor 4) equality operator similar to strcmp 5) constructor which takes a character array parameter 6) stream << operator
2 Answers HCL, Lehman Brothers, Zoomerang,
What is stream and its types in c++?
What is the use of volatile keyword in c++? Give an example.
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