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

  1. /* This function prints out the average of the numbers that have
  2.    been entered or read in */
  3. void print_results (float average)
  4. {
  5.     printf ("\nThe average of the four numbers is: %f\n", average);
  6.     return;
  7. }
  8. 
  9.