Coding Global Background
Coding Global

Can someone explain how does this work ?

Archived 3 years ago
❤️1
5 messages
3 members
3 years ago
Open in Discord
S
<3
Verified

```c void swap(int* a, int* b) { *a ^= *b; *b ^= *a; *a ^= *b; } ```

Replies (5)