What happens when a function throws an exception that was not specified by an exception specification for this function?
Answer / shalesh kumar
Unexpected() is called, which, by default, will eventually trigger abort().
Is This Answer Correct ? | 0 Yes | 0 No |
In what situations do you have to use initialization list rather than assignment in constructors?
diff between pointer and reference in c++?
Describe exception handling concept with an example?
Is vector a class in c++?
Explain the operation of overloading of an assignment operator.
Which bit wise operator is suitable for putting on a particular bit in a number?
What is encapsulation in c++ with example?
write infinite loop in C++ which does not use any variable or constant?
What is function overloading in C++?
What does 7/9*9 equal ? a) 1 b) 0.08642 c) 0
Which is not a valid keyword a) public b) protected c) guarded
C++ program output? Explain output of this program. #include <iostream> using std::cout; using std::cin; int main() { cout<<cout<<' '; cout<<cin; return 0; } It prints some address in hexadecimal. what is it?