Define basic type of variable used for a different condition in C++?
No Answer is Posted For this Question
Be the First to Post Answer
Explain about profiling?
What happens if an exception is throws from an object's constructor and from object's destructor?
Can c++ do everything c can?
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 bit wise operator is suitable for turning off a particular bit in a number?
What happens if a pointer is deleted twice?
How do you remove an element from a set in c++?
Can the operator == be overloaded for comparing two arrays consisting of characters by using string comparison?
What is iterator in c++?
What is the use of structure in c++?
What is name hiding in c++?
Explain object slicing in c++?