Computer Science, asked by allthingschannelbro, 2 months ago

Write a program to swap two values using third variable
Example: Before Swapping A=20 B=22
After Swapping A=22 B=20

Answers

Answered by tumpaghoshjh
1

Answer:

c=a;

a=b;

b=c;

Explanation:

PLSS MARK AS BRAINLIEST

Similar questions