Sunday 14 December 2014

Exception Handling Lab Program

#include <iostream>
double division(int a, int b)
{
     if( b == 0 )
     {
                throw "Division by zero condition!";
      }
      return (a/b);
}
int main ()
 {
int x = 20;
int y = 0;
double z = 0;
try
{
     z = division(x, y);
     cout << z << endl;
}
catch (const char* msg)
{
     cerr << msg << endl;
}
return 0;
}

No comments:

Post a Comment