[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[ale] This is legal C:



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;
}