Write a program to interchange the value of two variables, say x and y



#include <stdio.h>
void main ()
{
      int x, y;
      printf("Enter Two Numbers:");
      scanf("%d %d", &x, &y);
    printf("\n%d , %d\n\n", x, y);

}

Comments