#include<stdio.h> #include<conio.h> void main() { int a,b,c; clrscr(); printf(“Enter two numbers : “); scanf(“%d%d”,&a,&b); c=a; a=b; b=c; printf(“numbers after swapping are :%d and %d”,a,b); getch(); }