Can we inherit constructor in c++?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

What is the hardest coding language to learn?

0 Answers  


class X { private: int a; protected: X(){cout<<"X constructor was called"<<endl;} ~X(){cout<<"X destructor was called"<<endl} }; Referring to the code above, which one of the following statements regarding "X" is TRUE? a) X is an abstract class. b) Only subclasses of X may create X objects. c) Instances of X cannot be created. d) X objects can only be created using the default copy constructor. e) Only friends can create instances of X objects.

2 Answers   Quark,


Is structure can be inherited?

5 Answers   HP, ST Micro,


What is the difference between multiple and multilevel inheritance in c++?

0 Answers  


why can't we declare data member of class auto register or extern

1 Answers  






what is the emaning of '#include" "'?

5 Answers  


What is buffering in c++?

0 Answers  


What is the difference between static global and global ?

2 Answers   CA,


implement stack using stack.h headerfile functions

1 Answers   Exilant, GMG, Subex, University,


What is near, far and huge pointers? How many bytes are occupied by them?

0 Answers  


What are the benefits of operator overloading?

0 Answers  


What is abstraction in c++?

0 Answers  


Categories