Question d’entretien chez Bitwise

Program (Pseudo Code) to swap 2 variables without using 3rd variable.

Réponse à la question d'entretien

Utilisateur anonyme

8 nov. 2019

swap(int a, int b){ a = a + b ; b = a - b ; a = a - b ; }