int a{}, b{}, temp{};
cin >> a >> b;
//===================== METHOD-1
temp = a;
a = b;
b = temp;
//===================== METHOD-2 ( XOR ^ )
// example: a^b = 5^7
a = a ^ b; // 5^7
b = a ^ b; // 5 ^ 7 ^ 7 //5 ( 7 & 7 dismissed)
a = a ^ b; // 5 ^ 7 ^ 5 //7 ( 5 & 5 dismissed)
//===================== METHOD-3 ( swap() )
swap(a, b);
cout << "a " << a << endl;
cout << "b " << b << endl;
int main()
{
int a = 5;
int b = 10;
swap(a, b);
cout << "a = " << a << endl;
cout << "b = " << b << endl;
}
int a, b;
cout << "Input first number: ";
cin >> a;
cout << "Input second number: ";
cin >> b;
swap (a, b);
cout << "After swapping the first number: " << a << endl;
cout << "After swapping the second number: " << b << endl;