//Swap Two No.
#include<stdio.h>
main()
{
int a,b,c;
printf("enter the value of a,b,c");
scanf("%d%d",&a,&b);
c=a;
a=b;
b=c;
printf("%d%d",a,b);
}
No comments:
Post a Comment