How to Swap two numbers without using Third Variable and without Arithmatic Operator?
Sathish Pabbathi
a=b b=a
int a=20;int b=10; a=a+b; b=a-b; a=a-b;