Coding Global Background
Coding Global

Can someone explain how does this work ?

Archived 3 years ago
❤️1
5 messages
3 members
Created 3 years ago
Updated 3 years ago
Open in Discord
S
<3
Verified
void swap(int* a, int* b)
{
    *a ^= *b;
    *b ^= *a;
    *a ^= *b;
}

Replies (5)