employer cover photo
employer logo
employer logo

Perfomatix Solutions

Is this your company?

Perfomatix Solutions Interview Question

Write a program for swapping two numbers without using temp variable ?

Interview Answer

Anonymous

Jul 5, 2019

a=10; b=20; a=a+b; b=a-b; a=a-b;