I am Novice Koder
❤
Home
Swap Value
Program to interchange two numbers by using third vairable
Program to interchange two numbers by using third vairable
Xplore Junction
September 03, 2016
#include<stdio.h>
#include<conio.h>
main()
{
int a,b,c;
scanf("%d%d",&a,&b);
c=a;
a=b;
b=c;
printf("%d%d",a,b);
getch();
}
Output:-
Post a Comment
0 Comments
0 Comments