Skip to main content

Posts

Showing posts from March, 2018

SCRUMble ! - New Book about SCRUM

 SCRUMble ! Hello Blog Readers! Thank you for all your support and encouragement. I have something exciting for you all. I have recently written and published a new book called 'SCRUMble !'. It is currently available on pothi store. It will be soon available on Amazon and Flipkart as well. Please get your copy and do let me know your reviews. -Abhishek Sathe SCRUMble ! Written and Published by: Abhishek Sathe                                                                              Distributed by: pothi.com Order your copy now:  https://store.pothi.com/book/abhishek-sathe-scrumble/ Coming soon on Amazon and Flipkart About the book: Scrum is a framework for solving complex problems largely adapted by Software Development field. There are multiple ag...

Exceptions Handling in C++

Exceptions are C++’s means of separating error reporting from error handling. -Bjarne Stroustrup. Exception Handling is a built in mechanism provided by C++. If a runtime error (i.e. Exception) is not handled properly then the whole program may crash. We use try , catch and throw keywords for exception handling. C++ standard library provides a list of standard exceptions in <exception> header. try, throw: Whenever a problem occurs an exception is thrown using throw keyword. This is done by enclosing the exception causing portion of code inside a try block. Example:                   try                  {       //statements       if(condition)          ...