Source Code :
#include<stdio.h>
void main()
{
int c,d;
clrscr();
printf("\nEnter Two Numbers : ");
c=c+d;
d=c-d;
c=c-d;
printf("\nInterchanged Numbers : %d,%d",c,d);
getch();
}
Output :
Enter Two Numbers : 5 7
No comments:
Post a Comment