Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created July 4, 2021 06:46
Embed
What would you like to do?
#include<iostream>
using namespace std;
int main(){
int a, b, c;
a = 5;
b = 10;
c = a;
a = b;
b = c;
cout<<"The value of a is : "<<a<<endl;
cout<<"The value of b is : "<<b<<endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment