Question d’entretien chez Elegant MicroWeb

Swap 2 numbers without using third variable.

Réponse à la question d'entretien

Utilisateur anonyme

9 août 2015

x = x + y; y = x - y; x = x - y; This was my solution without using XOR operator.

1