Journal 1-10-20
- Valeria Dominguez :)
- Jan 10, 2020
- 1 min read
Swapping variables
To swap is to exchange
int num1 = 5, num2 = 10;
num1 = num2;
num2 = num1;
need to store the value of num1
temp Is an intermediate variable
temp = num1;
value of num1 is kept in var temp
then you would have to write : num2 = temp;
Comments