Function prototypes cont.
/* file cs_fnt.c to sum the integers from 1 to n */
printf("%d\n", n); /* 0 is printed */
Note that there are 4 identifiers i.e. n, sum in main() and compute_sum(), and call-by-value is adopted in parameter passing in this program.