Swapping Program in C
There are many different swapping program in C language. Swap two numbers mean to exchange the values of two variables with each other. X=10 and Y=20 then after swapping X=20 and Y=10 Swapping program in C using a temporary variable Output:- a=20 b=10 Explanation:- At starting we take a=10, b=20 and the temporary variable c […]
Swapping Program in C Read More »