Exception Handling in C++

What is an exception? Exception is an event that happens when unexpected circumstances appear. It can be a runtime error or you can create an exceptional situation programmatically. Exception handling consists in transferring control from the place where exception happened to the special functions (commands) called handlers. How to handle … Continue reading Exception Handling in C++