Can someone explain how does this work ?
Archived 3 years ago
S
<3
Playing Custom Status
Verified
void swap(int* a, int* b)
{
*a ^= *b;
*b ^= *a;
*a ^= *b;
}

Playing Custom Status
void swap(int* a, int* b)
{
*a ^= *b;
*b ^= *a;
*a ^= *b;
}