Explain terminate() and unexpected() function?
No Answer is Posted For this Question
Be the First to Post Answer
What are the types of pointer?
Explain how overloading takes place in c++?
If you want to share several functions or variables in several files maitaining the consistency how would you share it?
Write about the local class and mention its use?
What is the difference between the indirection operator and the address of oper-ator?
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
Differentiate between the message and method in c++?
What is the difference between structure and class?
What is const in c++?
What is this pointer in c++?
Is the declaration of a class its interface or its implementation?
Is there a datatype string in c++?How is the memory allocation?