Answer Posted / v.bharathi
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b;
clrscr();
printf("\nenter a,b value");
scanf("%d%d",&a,&b);
a=a+b;
b=a-b;
a=a-b;
printf("\nafter swapping..\n%d%d",a,b);
getch();
}
Is This Answer Correct ? | 10 Yes | 3 No |
Post New Answer View All Answers