how to swap two numbers without using 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: swapping of two numbers without using third variable in shell script
#!/bin/bash
echo "enter first number"
read a
echo "enter second number"
read b
echo "a before swapping is $a and b is $b"
#swapping
a=$((a+b))
b=$((a - b))
a=$((a-b))
echo "a after swapping is $a and b is $b"
Example 3: Swap two numbers without using a third variable ( All possible ways ).
Swaping two numbers without using temp variable