Exceptions
July 27th, 2009 by carlos
An exception is an indication that something unexpected occurred in a C program. The mechanism used by C to handle exceptions is using the try/catch pair of keywords. An exception is represented in C++ by an object that encodes the condition that caused the exceptional event. One can use this object by means of the [...]