swap value without third variable code example
Example 1: swap without using third variable
#include<stdio.h>
int main()
{
int a=10, b=20;
printf("Before swap a=%d b=%d",a,b);
a=a+b;
b=a-b;
a=a-b;
printf("\nAfter swap a=%d b=%d",a,b);
return 0;
}
Example 2: Write a program to show swap of two numbers without using third variable.
#include<stdio.h>
int main()
{
int a=10, b=20;
printf("Before swap a=%d b=%d",a,b);
a=a+b;
b=a-b;
a=a-b;
printf("\nAfter swap a=%d b=%d",a,b);
return 0;
}
Example 3: how to swap 2 numbers without 3rd variable
int a = 3;
int b = 5;
a = b*a;
b = a/b
a = a/b
Example 4: Swap two numbers without using a third variable ( All possible ways ).
Swaping two numbers without using temp variable