CGI Interview Question

swap values without third variable

Interview Answer

Anonymous

Feb 16, 2016

int x=1,y=2; x=x+y; y=x-y; x=x-y;