Does c++ support exception handling?



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

Post New Answer

More C++ General Interview Questions

Is empty stack c++?

1 Answers  


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;

4 Answers   Lehman Brothers,


What is linked list in c++?

1 Answers  


Should I learn c or c++ first?

1 Answers  


What is data hiding c++?

1 Answers  


Is c++ the hardest programming language?

1 Answers  


what are the events occur in intr activated on interrupt vector table

1 Answers   HGS,


What are iterators in c++?

1 Answers  


How does list r; differs from list r();?

1 Answers  


Which c++ compiler is best?

1 Answers  


Explain what is oop?

1 Answers  


What do you mean by global variables?

1 Answers  


Categories