Answers for "swap value of two variables without using a third"

C
2

how to swap 2 numbers without 3rd variable

int a = 3;
int b = 5;
a = b*a;
b = a/b
a = a/b
Posted by: Guest on April-02-2021

Code answers related to "swap value of two variables without using a third"

Code answers related to "C"

Browse Popular Code Answers by Language