Sunday, December 23, 2018

PROGRAM TO SWAP TWO NUMBERS

/*PROGRAM  TO  SWAP  TWO  NUMBERS*/

#include<stdio.h>
#include<conio.h>
void main()
{
 int x, y, temp;
 clrscr();
 printf("Enter the value of x and y\n");
 scanf("%d%d", &x, &y);

 printf("Before Swapping\nx = %d\ny = %d\n",x,y);
 temp = x;
  x    = y;
  y    = temp;
printf("After Swapping\nx = %d\ny = %d\n",x,y);
getch();
}


Output:-
sk.

No comments:

Post a Comment

Wikipedia

Search results

Search The program