What are iterators in c++?
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
C is to C++ as 1 is to a) What the heck b) 2 c) 10
What is the basic structure of c++ program?
Why do we use string in c++?
Write a program to get the value of sin (x) using a library function , when x is given in degrees.
What is the difference between "calloc" and "malloc"?
What is the header file for setw?
What do you mean by inheritance in c++?
What's the order in which the local objects are destructed?
What is null and void pointer?
Why do we use vector in c++?
Explain the benefits of proper inheritance.