Wednesday, July 20, 2016

1st rank ...

Saturday, April 23, 2016

...

Monday, February 29, 2016

...

Sunday, February 14, 2016

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++)       ...

Monday, February 8, 2016

 //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,...

Translate

Sample Text

Powered by Blogger.

IT Support Tips & Tricks

Every thing is possible in real world....

Contact us

Name

Email *

Message *

IT Support

Blogroll

You can replace this text by going to "Layout" and then "Page Elements" section. Edit " About "

Video

Our Facebook Page

Popular Posts

Total Pageviews

5,003