#swap-2-numbers
Read more stories on Hashnode
Articles with this tag
Program to swap two numbers Input: Enter the value of X and Y num1=10 num2=20 Before swapping: 10 20 Output: num1=20 num2=10 After swapping: 20 ...