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