/********************************************************************* C201 Computer Programming II Fall 2006 Dana Vrajitoru & Definition of the structure Employee and functions to manipulate it. **********************************************************************/ #include "employee.h" #include #include // Outputs the values in an employee record. void Output_rec(Employee_rec person) { printf("name: %s, id: %d, salary: %g\n", person.name, person.id, person.salary); } // Outputs all the records in an array. void Output_all(Employee_rec staff[], int size) { for (int i=0; i