Program to swap two numbers without using third variable
A simple program to swap two numbers without using the third variable. You have to use some formulas or basic concepts. #include<stdio.h> #include<conio.h> void main() { int a,b; clrscr(); printf("enter…