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:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1989-11-14
|
155 b
|
8 lines
/* This is the function that determines the average of a bunch
of numbers */
float compute (int n, float xsum)
{
return (xsum/(float)n);
}