25.09.2017 Views

cpp_tutorial

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

C++<br />

{<br />

}<br />

// code to handle any exception<br />

The following is an example, which throws a division by zero exception and we<br />

catch it in catch block.<br />

#include <br />

using namespace std;<br />

double division(int a, int b)<br />

{<br />

if( b == 0 )<br />

{<br />

throw "Division by zero condition!";<br />

}<br />

return (a/b);<br />

}<br />

int main ()<br />

{<br />

int x = 50;<br />

int y = 0;<br />

double z = 0;<br />

try {<br />

z = division(x, y);<br />

cout

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!