1 2 3 4 5 6 7 8
int a[32]; int fn1(int d) { int c = 1; for (int b = 0; b < 32; b++) if (a[b]) c = 0; return c; }