1 typedef struct { 2 int n; 3 float *a; 4 } bar; 5 6 float foo(bar * b)7 foo (bar *b) 8 { 9 float c, d; 10 int j; 11 12 for (j = 0; (j < b->n); j++) 13 d += b->a[j]; 14 15 for (j = 0; (j < b->n); j++) 16 c += b->a[j]; 17 18 return d; 19 } 20