Write a q- basic program to take two numbers and swap (interchange) the numbers with each others.
Answers
Answered by
1
Answer:
ok
Explanation:
I think it will be helpful for you
Answered by
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