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

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