Explain the difference between using macro and inline functions?
No Answer is Posted For this Question
Be the First to Post Answer
class A { public: void f(); protected: A() {} A(const A&){} }; Examine the class declaration shown above. Why are the default and copy constructors declared as protected? 1. To ensure that A cannot be created via new by a more derived class 2. To ensure that A cannot be copied 3. To ensure that A cannot be used as a base class except when public inheritance has been used 4. To ensure that A cannot be created/copied outside the inheritance chain 5. To ensure that A cannot be instantiated as a static variable
What is an adaptor class in c++?
Explain operator overloading.
What is c++ used for in games?
What is a pdb file?
What is general format for a prototype?
how many rounds and wt type of questios ask in the written test for first round 2. tech. round 3. and futher rounds
What is a concrete class?
Does there exist any other function which can be used to convert an integer or a float to a string?
What is data type in c++?
What is setfill c++?
What are class and object in C++?