My Pensieve

A collection of articles on Math, cricket and a few puzzles

coding

  • Learning ABOUT CONST LEVEL

    Exception handling in C++ This is meant to explain the differences between low level and top level const Read more

  • All about exceptions

    Exception handling in C++ Below is an example of exceptions with polymorphism. Throw throws an object of a class( can be derived from std::exception).what is an operator of this class that returns a const char* .We can use polymorphism to implement a single catch that has an argument as reference to base class. We use Read more