To Show exception handling.
//Try block throwing exception
#include <iostream>#include <conio.h>using namespace std;int main(){ int a; int b; cout<<"Enter value of A and B"<<endl; cin>>a>>b; try { ...
To sort 10 number in asscending order using function template.
Program:-
#include <iostream>#include <conio.h>using namespace std;template <class T>void Sort(T a[],int n){ T hold; int i,j; for(i=0;i<n;i++) { for(j=0;j<n-1-i;j++) ...
//Adding two number using class template...
#include <iostream>#include<conio.h>using namespace std;template <class T>class mytemp{private: T a,b,c;public: void getdata() { cout<<"Enter first number:"; cin>>a; ...
// Program to Swap Two Numbers Using Function Template.
#include <iostream>#include<conio.h>>using namespace std;template <class T>void Swap(T &n1, T &n2){ T temp; temp = n1; n1 = n2; n2 = temp;}int main(){ int i1=8, i2=2; float f1=7.1,...