Write a program in c to swap two numbers. How to swat the two variables without using temporary variable. Swapping two numbers means interchanging the values of two variables. For Example Before swapping A = 3, B = 4 After swapping A = 4, B = 3 We have to take two numbers as input ... Read more