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

Post New Answer

More C++ General Interview Questions

Explain about profiling?

1 Answers  


What happens if an exception is throws from an object's constructor and from object's destructor?

3 Answers   TCS,


Can c++ do everything c can?

0 Answers  


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

1 Answers  


Which bit wise operator is suitable for turning off a particular bit in a number?

0 Answers  






What happens if a pointer is deleted twice?

0 Answers   Flextronics,


How do you remove an element from a set in c++?

0 Answers  


Can the operator == be overloaded for comparing two arrays consisting of characters by using string comparison?

0 Answers  


What is iterator in c++?

0 Answers  


What is the use of structure in c++?

0 Answers  


What is name hiding in c++?

0 Answers  


Explain object slicing in c++?

0 Answers  


Categories