1 2 3 4 5 6 7 8 9 10 11
f (signed long long int x) { return x > 0xFFFFFFFFLL || x < -0x80000000LL; } main () { if (f (0) != 0) abort (); exit (0); }