Name: Anonymous 2011-01-03 13:52
I CHOOSE YOU MEGATROLL
int f(int x);
static inline int f_00(int x) { return 0; }
static inline int f_10(int x) { return 1; }
static inline int f_11(int x) { return ~1; }
int (*f_t[][])(int,int) = { { f_00, f_00 }, { f_10, f_11 } };
int f(int x) { return f[x!=0][x<0](x); }