Define the process of error-handling in case of constructor failure?


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

Post New Answer

More C++ General Interview Questions

What is the basic concept of c++?

0 Answers  


In a class only declaration of the function is there but defintion is not there then what is that function?

5 Answers   Hughes,


Explain the purpose of the keyword volatile.

0 Answers  


Why is c++ not purely object oriented?

0 Answers  


What is the difference between structure and class?

0 Answers  






Given the following function definition: int doit(int &x, int y, int &z) { x = 3*x; y = y + 5; z = x+y; return z - 4; } int a = 5, b = 7, c = 9, d = 11; d = doit(a,b,c);

2 Answers  


What is virtual constructor paradigm?

5 Answers   HCL, HP,


What is the best c++ compiler?

0 Answers  


Implement strncpy

3 Answers  


Why are pointers not used in c++?

0 Answers  


What causes a runtime error c++?

0 Answers  


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

0 Answers  


Categories