Question d’entretien chez Talent4Assure

swap two numbers without using a third variable.

Réponse à la question d'entretien

Utilisateur anonyme

28 nov. 2017

#include void main() { int i=10; int j=20; i=i+j; j=i-j; i=i-j; printf("%d,%d",i,j); }