How to swap two numbers without using temp variables or arithmetic operations? August 4, 2023 by Tarik a=a+b; b=a-b; a=a-b; This is simple yet effective….