Monday 31 March 2014

C programs | Swapping of two numbers without third(temp) variable in C

C programs | Swapping of two numbers without third(temp) variable in C

Source Code:-)

#include <stdio.h>

int main()
{
   int a, b;

   printf("Enter two integers to swap\n");
   scanf("%d%d", &a, &b);

   a = a + b;
   b = a - b;
   a = a - b;

   printf("a = %d\nb = %d\n",a,b);
   return 0;
}

No comments:

Post a Comment