Input
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,temp;
clrscr();
printf("Swapping two using a temporary Variable\n");
scanf("%d%d",&a,&b);
printf("Number before Swapping are \ta=%d\tb=%d",a,b);
temp=a;
a=b;
b=temp;
printf("\nNumber after Swapping are \ta=%d\tb=%d",a,b);
getch();
}