Write a program to swap the values of two numbers without using a third variable

Source Code

#include<stdio.h>
#include<conio.h>
int main (int argc, char *argv[])
{
  clrscr();
  int a,b;
  printf("\n Enter two variables:");
  scanf("%d %d",&a,&b);
  b=a+b;
  a=b-a;
  b=b-a;
  printf("\n The values of a and b are: %d and %d",a,b);
  getch();
}

Find More from our code collection
Armstrong number, binary number to a decimal number, bubble sort, decimal number to binary number, factorial of the given number factors, fibonacci numbers, HCF and LCM, matrix, mergesort, salary of the employee. palindrome, quadratic equation, star patterns, series etc. and much more...
#Return to Example Source Code