Question d’entretien chez Xebia

swap two numbers without using third variable.

Réponse à la question d'entretien

Utilisateur anonyme

29 avr. 2020

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