Open menu
Join Discord Server
Coding
Global
Coding
Global
Join Discord Server
Home
Chat
Community
Resources
Marketplace
Login with Discord
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)