Wednesday, October 12, 2016

Exception handling (Solution To E Balagurusamy Problem 13.5)

thumbnail
Solution: #include<iostream> using namespace std; double x,y; void read() { cout<<"\nEnter Two Double Type Values E...

Catch All Exceptions Using Single Catch Statement

thumbnail
Program to illustrate the catching of all exceptions using single catch statement: #include<iostream> using namespace std; void t...

Multiple Catch Statements (Solution To E Balagurusamy Problem 13.2)

thumbnail
In Multiple Catch Statements The Type of Argument is Matched with all catch statements and after a match the statement after the last catch...

Exception Handling(Solution To E Balagurusamy Problem 13.1)

thumbnail
Problem: Write a program containing a possible exception.Use a try block to throw it and a catch block to handle it properly. Solution: ...
Tuesday, October 11, 2016

Addition Of Polynomials Using Array :)

thumbnail
#include<iostream> using namespace std; main() { int a[100],b[100],c[100],n,m,e; cout<<"Enter the Max Power of Pol...
Monday, October 10, 2016

Quick Sort Using Stack :)

thumbnail
Quick Sort is an Sorting process which helps in sorting a list of elements. Following Program Illustrates The Concept : #include...

new and delete Operators :)

thumbnail
C++ Program to show use of new and delete Operators. #include <iostream> using namespace std; int main() {     int i,*p; //p...