Question d’entretien chez Global Edge Software

how do u swap number using bitwise operator

Réponse à la question d'entretien

Utilisateur anonyme

12 févr. 2018

#include int main() { int x=10,y=5; x = x^y; y = x^y; x = x^y; printf("After swapping: x=%d, y=%d",x,y); return 0; }

2