C Programming: Swapping Two Variable Without Using Third Variable
How to swap two variable values without using a third variable?
Answers
Answered by
3
Considering a=5 and b=6
a=a+b;
b=a-b;
a=a-b;
Similar questions