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:
C/C++ Source or Header  |  1994-05-08  |  250 b   |  18 lines

  1. #include <stdio.h>
  2.  
  3. double avrg(double, double) ;
  4.  
  5. main()
  6. {
  7.   double a,b,av;
  8.  
  9.   printf (" Enter two numbers: ");
  10.   scanf  ("%lf %lf", &a, &b);
  11.   
  12.   av = avrg(a, b);
  13.   printf (" The average of %lf and %lf is %lf\n", a,b,av);
  14.     
  15. }
  16.  
  17.  
  18.