Write a program to swap the value of two variables without the use third variable.
This program swaps the values of variables a and b without using a third variable. First, the values of a and b are initialized to 7 and 4, respectively. Then, the values of a and b are swapped using the following steps: Finally, the program prints the values of a and b, which are swapped, […]