home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
makedce.zip
/
EXAMPLES.ZIP
/
examples
/
ChServer
/
program.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1994-05-08
|
250 b
|
18 lines
#include <stdio.h>
double avrg(double, double) ;
main()
{
double a,b,av;
printf (" Enter two numbers: ");
scanf ("%lf %lf", &a, &b);
av = avrg(a, b);
printf (" The average of %lf and %lf is %lf\n", a,b,av);
}