#include #define NUM_EMP 50 /* size of arrays */ int get_integer(int, int); /* function to get an integer within a specified range. See do-while loop notes */ int main() { /* Declare 3 arrays */ double int i, /* loop control variable and array subscript */ num; /* actual number of employees */ /* read number of employees */ num = get_integer(1, 50); /* read a number between 1 & 50 */ /* Read hours and rate for each employee */ for ( ) { } /* loop to read the employee data */ /* Compute each employee's gross pay */ for ( ) gross[i] = ; /* Display each employee's hours, rate, and gross pay */ printf("hours \trate \tgross); /* \t is the tab character */ for ( ) printf( ); /* future work: --- */ /* Find and display average gross pay */ /* Find and display median gross pay */ return 0; } /* Insert other functions here. */