What is array give example?
No Answer is Posted For this Question
Be the First to Post Answer
When does a name clash occur in c++?
How would you call C functions from C++ and vice versa?
What is an opaque pointer?
What is c++ and its uses?
what is Loop function? What are different types of Loops?
Define the process of handling in case of destructor failure?
Explain the difference between c & c++?
Explain queue. How it can be implemented?
Can I create my own functions in c++?
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
Which software is best for programming?
What is meant by the term name mangling in c++?