> #include <stdio.h>
> int main ()
> {
> int i;
> for (i = 0; i < 14; i++)
> putchar (i ["Hello, world!\n"]);
> }
That's interesting as a puzzle, but I've seen the converse:
"0123456789abcdef"[i]
in the wild. I'm pretty sure it was in some of Ken's code.
BLS