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