1 2 3 4 5 6 7 8 9 10 11
int i; float f; void *p; int main(void) { if (i ? 1 : 0) return 1; if (f ? 1 : 0) return 1; if (p ? 1 : 0) return 1; }