I want to see what little coding tricks you know. Let me start with one example:
This little code I took from Tanenbaum's Operating Systems Design and Implementation book, it copy n elements from a vector q to a vector p using pointer arithmetics. Since it is in C, it also works for strings:
while (n--) {
*p++ = *q++;
}
Now post any small algorithm to do something in a more elegant, funny, faster or cleaner way, in any language. Also post an explanation of what it does. Like my example above, the code doesn't need to check for all the possible scenarios (that one doesn't check for overflows), it just needs to be really cool way to do something (Ninja Style).
