
noft Utility
noft Manual—528273-003
2-7
Debugging With noft
Example 2-3. C Program
long compute(long a[]);
int main (void)
{
long z[10];
long x;
x=compute(z);
return 0;
}
long compute(long a[])
{
long b;
int c,i;
b=0;
for (i=0; i<20; i++)
b += a[i];
return b;
}