Home
All posts
Wednesday, October 12, 2016
Exception handling (Solution To E Balagurusamy Problem 13.5)
Solution: #include<iostream> using namespace std; double x,y; void read() { cout<<"\nEnter Two Double Type Values E...
Read more
Catch All Exceptions Using Single Catch Statement
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)
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)
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 :)
#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 :)
Quick Sort is an Sorting process which helps in sorting a list of elements. Following Program Illustrates The Concept : #include...
new and delete Operators :)
C++ Program to show use of new and delete Operators. #include <iostream> using namespace std; int main() { int i,*p; //p...
