Computer Science, asked by ajaydaslg11223, 10 hours ago

Q 1. Write an algorithm to interchange the value of two variable by using the third variable.​

Answers

Answered by guptarahulalwaysonl9
0

Answer:

a=a+b;//a=30 (10+20)

b=a-b;//b=10 (30-20)

a=a-b;//a=20 (30-10)

Explanation:

Similar questions