Question d’entretien chez Birlasoft

How to swap two numbers without a third variable.

Réponses aux questions d'entretien

Utilisateur anonyme

26 janv. 2021

Use pen and paper...or notepad

1

Utilisateur anonyme

9 avr. 2021

int x=5; int y=4; x=x+y; //x*y y=x-y; //x/y x=x-y; //x/y Print x and y