Question d’entretien chez Teradyne

How to swap two numbers without using pass by reference or temporary variables

Réponse à la question d'entretien

Utilisateur anonyme

20 nov. 2024

x += y; y = x - y; x = x -y;

1