#include<stdio.h>
#include<conio.h>
main()
{
int a=10, b=20; //declaration of variables.
clrscr(); //It clears the screen.
printf(“Before swap a=%d b=%d”,a,b);
a=a+b;//a=30 (10+20)
b=a-b;//b=10 (30-20)
a=a-b;//a=20 (30-10)
printf(“\nAfter swap a=%d b=%d”,a,b);
getch();
}
Vishalini.R Answered question June 26, 2023
							Program to swap two numbers without using the third variable
- STEP 1: START.
 - STEP 2: ENTER x, y.
 - STEP 3: PRINT x, y.
 - STEP 4: x = x + y.
 - STEP 5: y= x – y.
 - STEP 6: x =x – y.
 - STEP 7: PRINT x, y.
 - STEP 8: END.
 
Vishalini.R Answered question June 26, 2023
				