1 2 3 4 5 6 7 8 9 10 11 12
int f (int a) { return ((a >= 0 && a <= 10) && ! (a >= 0)); } main () { if (f (0)) abort (); exit (0); }