Program to swap to numbers without using third variable in c language Rajnish January 6, 2020 program:- #include<stdio.h> #include<conio.h> void main() { int a,b; printf(“Enter two numbers”); scanf(“%d%d”,&a,&b); a=a+b; b=a–b; a=a–b; printf(“first number=%d and second number=%d”,a,b); getch(); }
nice work
Thank you
Keep it
Bahoot sandar