c programming – Swap two variable without using 3rd variable

c programming – Swap two variable without using 3rd variable In this post we will show you how to Swap two variable without using 3rd variable in c programming. flowing code will help you to perform program. For Swap two variable without using 3rd variable we use this method :: a=a+b; b=a-b; a=a-b; // include …

c programming – Swap two variable without using 3rd variable Read More »