www.pudn.com > λ²Ù×÷.zip > PRINTRES.C


/* This function prints out the average of the numbers that have 
   been entered or read in */ 
void print_results (float average) 
{ 
    printf ("\nThe average of the four numbers is: %f\n", average); 
    return; 
}