[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[ale] This is legal C:
- Subject: [ale] This is legal C:
- From: bjorn at sccs.swarthmore.edu (Bjorn Dittmer-Roche)
- Date: Thu Feb 12 10:40:32 2004
Someone sent me this. It's an interesting oddity. Try it on your
favorite C compiler!
bjorn
--------------------------------------------------
/* Find the strangeness! Spotted on kuro5hin... */
#include <stdio.h>
char *foo[] = {"what", "the", "heck", "is", "this"};
int main(int argc, char **argv)
{
int j=2;
printf("Test: %s\n", j[foo]);
return 0;
}