Pregunta de entrevista de Perfomatix Solutions

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

Respuesta de la entrevista

Anónimo

5 jul 2019

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