home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / MAGAZINE / MISC / CNEWS018.ZIP / BEGINNER.ARC / COMPUTE.C < prev    next >
Encoding:
Text File  |  1989-11-14  |  155 b   |  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.