/*WRITE A MAIN PROGRAM THAT CALLS A NESTED FUNCTION CONTAINING AN EXCEPTION. INCORPORATE NECESSARY EXCEPTION HANDLING MECHANISM.*/ #include #include void divide(int i ,int j,int k ) { if((i-j)!=0) { int n=k/(i-j); cout<<"The quotient is: "<>p,q,s; clrscr(); try { multiply(p,q,s); } catch(int i) { cout<<"\nException caught due to zero divisor."; } cout<<"\n\t Written By: Sujit Kr Nayak\n\t Roll No: ELD09006"; getch(); }