C++ tutorial, C++ programs, C++ Exercises, C++ Example Programs

Friday, October 25, 2013

Program to Swap Values of Two Variables




#include<iostream.h>
#include<conio.h>
void main()
{
     int v1, v2, temp;

     cout<<"Enter value of first variable:";
     cin>>v1;
   
     cout<<"Enter value of second variable:";
     cin>>v2;

     cout<<"The values before swapping are: \n Varible 1="<<v1<<" Variable 2="<<v2;
     temp = v1;
     v1 = v2;
     v2 = temp;

     cout<<"\n The values after swapping are: \n Varible 1="<<v1<<" Variable 2="<<v2;   
      
      getch();

     }
   
Share:

1 comment:

We Love To Hear From You!

EasyCPPprogramming.blogspotcom

Labels