Does c++ support exception handling?
Answer / Rani
Yes, C++ supports exception handling using the 'try', 'catch', and 'throw' keywords. Exceptions allow program flow to be redirected when an error occurs during execution.
| Is This Answer Correct ? | 0 Yes | 0 No |
Is empty stack c++?
What is the output of: String a1 = "Hello"; String a2 = "world!"; String* s1 = &a2; String& s2 = a1; s1 = &a1; s2 = a2; std::cout << *s1 << " " << s2 << std::endl;
What is linked list in c++?
Should I learn c or c++ first?
What is data hiding c++?
Is c++ the hardest programming language?
what are the events occur in intr activated on interrupt vector table
What are iterators in c++?
How does list r; differs from list r();?
Which c++ compiler is best?
Explain what is oop?
What do you mean by global variables?