Programming Examples
Swapping of two variables without using a third variable
Create a program that will swap the values stored in two variables without using a third variable.
Solution
Output
Before Swap the value of a=40 and b=30
After Swap the value of a=30 and b=40