C and C++ Programming Resources

Custom Search

Exception Handling in C#

Posted on September 26th, 2008 0 Comments

An exception usually signals an error. Thought it doesn’t always indicate an eror, it can also signal some particularly unusual even in your program that deserves special attention. Exception & Errors Handling No mater how good our program is, it always have to be able to handle possible errors. Most applications today contain some form of error handling....
Read More | Make a Comment

Exception Handling

Posted on September 10th, 2008 0 Comments

Exceptions are the way of flagging unexpected conditions or errors that have occured in C++ program. Exception Mechanism so far we have handled error conditions by using the if statement to test some expressions and then executing specific code to deal with the error. C++ Language provides a good mechanism to tacke these conditions. The exception mechanism uses...
Read More | Make a Comment

Advance Exception handling

Posted on September 10th, 2008 0 Comments

An exception usually signals an error. Thought it doesn’t always indicate an eror, it can also signal some particularly unusual even in your program that deserves special attention. Exception & Errors Handling No mater how good our program is, it always have to be able to handle possible errors. Most applications today contain some form of error handling....
Read More | Make a Comment

Exception Handling

Posted on September 9th, 2008 0 Comments

Error recovery is a fundamental concern for every program you write, and it’s especially important in C++, in which one of the goals is to create program components for others to use. To create a robust system, each component must be robust.The goals for exception handling in C++ are to simplify the creation of large, reliable programs using less code than...
Read More | Make a Comment