Computer Science, asked by bhumikaguptavis2010, 6 days ago

Write a q- basic program to take two numbers and swap (interchange) the numbers with each others.​

Answers

Answered by neharikac88
1

Answer:

ok

Explanation:

I think it will be helpful for you

Answered by ImpressAgreeable4985
0

swapping of two numbers in c #include<stdio.h> int main() { int a,b; scanf("%d%d",&a,&b); a=a+b; b=a-b; a=a-b; printf("%d%d",a,b); }

Similar questions