Code:
void Get_input (struct employee employeeData[], float hours[])
{
/*Local Variable Declaration*/
int i; /* Variable for Loop Index*/
 
/*Get Employees Hours and Store them in an array*/
for (i = 0; i < NUM_EMPL; i++)
{
printf ("Enter the number of hours worked by Employee # %06li:", employeeData[i].id_number);
scanf ("%f", &hours[i]);
}
}  /* Get_input */
What line in there do you think is actually putting data into the structures?


Quzah.