Explain terminate() and unexpected() function?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

What are the types of pointer?

0 Answers  


Explain how overloading takes place in c++?

0 Answers  


If you want to share several functions or variables in several files maitaining the consistency how would you share it?

0 Answers  


Write about the local class and mention its use?

0 Answers  


What is the difference between the indirection operator and the address of oper-ator?

0 Answers  






class Foo { public: Foo(int i) { } }; class Bar : virtual Foo { public: Bar() { } }; Bar b; Referring to the above code, when the object 'b' is defined, a compiler error will occur. What action fixes the compiler error? a) Adding a virtual destructor to the class Bar b) Adding a constructor to Bar which takes an int parameter c) Adding "Foo()" to the Bar constructor d) Adding a copy constructor to the class Foo e) Adding "Foo(0)" to the Bar::Bar initializer list

2 Answers   Quark,


Differentiate between the message and method in c++?

0 Answers  


What is the difference between structure and class?

0 Answers  


What is const in c++?

0 Answers  


What is this pointer in c++?

1 Answers  


Is the declaration of a class its interface or its implementation?

0 Answers  


Is there a datatype string in c++?How is the memory allocation?

3 Answers  


Categories