swap two numbers call by value code example
Example 1: swap 2 numbers without using 3rd variable
a=10;
b=20;
a=a+b;//a=30 (10+20)
b=a-b;//b=10 (30-20)
a=a-b;//a=20 (30-10)
Example 2: Swap two numbers without using a third variable ( All possible ways ).
Swaping two numbers without using temp variable