employer cover photo
employer logo

Question d’entretien chez NetSuite

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

Réponse à la question d'entretien

Utilisateur anonyme

13 août 2015

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