Thomson Reuters interview question

pgm to swap numbers without using temporary variable

Interview Answer

Anonymous

14 Feb 2016

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

1