Logo 
Search:

C++ Programming Articles

Submit Article
Home » Articles » C++ Programming » BeginnersRSS Feeds

Program to swap two integers

Posted By: Easy Tutor     Category: C++ Programming     Views: 14911

write a function using refrence variable as argument to swap the value of a pair of integers.

Code for Program to swap two integers in C++ Programming

/*www.DailyFreeCode.comDownload Projects, Sourcecodes, Tips and Tricks, Interview FAQs, Hotlinks and more....Logon to www.DailyFreeCode.com*//*    write a function using refrence variable as argument to swap   the value of a pair of integers. */


#include <iostream.h>
#include <conio.h>

class swaping
{
int a;
public :
void getdata(void);
friend void swap(swaping &,swaping &);
void display(void);
};

void swaping :: getdata(void)
{
cout<<"\n\nEnter any Integer :-";
cin>>a;
}

void swap(swaping &o1,swaping &o2)
{
int temp;
temp    =    o1.a;
o1.a    =    o2.a;
o2.a    =    temp;
}

 void swaping :: display(void)
{
cout<<a<<endl;
}

void main()
{
clrscr();
swaping o1,o2;

cout<<"Before Swaping\n";
o1.getdata();
o2.getdata();

swap(o1,o2);

cout<<"\n\nAfter Swaping\n";
o1.display();
o2.display();

getch();
}
  
Share: 


Didn't find what you were looking for? Find more on Program to swap two integers Or get search suggestion and latest updates.

Easy Tutor
Easy Tutor author of Program to swap two integers is from United States. Easy Tutor says

Hello Friends,

I am Free Lance Tutor, who helped student in completing their homework.

I have 4 Years of hands on experience on helping student in completing their homework. I also guide them in doing their final year projects.

I have share many programs on this website for everyone to use freely, if you need further assistance, than please contact me on easytutor.2ya [at the rate] gmail [dot] com

I have special discount scheme for providing tutor services. I am providing tutor service to students from various contries, currently most of my students are from United States, India, Australia, Pakistan, Germany, UK and Canada.

I am also here to expand my technical network to receive more opportunity in my career, make friends to help them in resolving their technical problem, learn and share my knowledge, If you like to be my friend, Please send me friend request.

Thanks,
Happy Programming :)

 
View All Articles

 

Other Interesting Articles in C++ Programming:


 
Please enter your Comment

  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].

 
Rahemeen Khan from Australia Comment on: Apr 12
very gud site for programmers...

View All Comments