Write a program to swap two variables without third variable. 08:54:00 – by Arslan Akram C++ Code #include<iostream> #include<conio.h> using namespace std; int main() { int a,b; cout<<"a="; cin>>a; cout<<"b="; cin>>b; a=a+b; b=a-b; a=a-b; cout<<"a="<<a<<endl<<"b="<<b; getch(); } Email ThisBlogThis!Share to XShare to Facebook