Coding Global Background
Coding Global

Can someone explain how does this work ?

Archiviert 3 years ago
❤️1
5 Nachrichten
3 Mitglieder
Erstellt 3 years ago
Aktualisiert 3 years ago
In Discord öffnen
S
<3
Verified
void swap(int* a, int* b)
{
    *a ^= *b;
    *b ^= *a;
    *a ^= *b;
}

Antworten (5)