Fiserv interview question

Program to swap without temp variable

Interview Answer

Anonymous

Oct 22, 2020

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