A Developer Gateway To IT World...

Techie Uncle Software Testing Core Java Java Spring C Programming Operating System HTML 5 Java 8 ES6 Project

Write a program to swap to values in c++

#include<iostream>
using namespace std;
int main()
{ int a,b,c;
  cout<<"Enter a and b";
  cin>>a>>b;
 
  c=a;
  a=b;
  b=c;
 
  cout<<"a= "<<a<<" b= "<<b;
   

}

LEARN TUTORIALS

.

.