home *** CD-ROM | disk | FTP | other *** search
/ World of Shareware - Software Farm 2 / wosw_2.zip / wosw_2 / CPROG / CNEWS018.ZIP / BEGINNER.ZIP / COMPUTE.C < prev    next >
Text File  |  1989-11-14  |  155b  |  8 lines

  1. /* This is the function that determines the average of a bunch
  2.    of numbers */
  3. float compute (int n, float xsum)
  4. {
  5.     return (xsum/(float)n);
  6. }
  7. 
  8.