employer cover photo
employer logo

Pregunta de entrevista de NetSuite

Given two variables with integer values, write a code which swaps values of these variables without using third variable.

Respuesta de la entrevista

Anónimo

13 ago 2015

a = a + b; b = a - b; a = a - b;