/* * File: Employee_test.c * Creator: George Ferguson * * Test the Employee ``class.'' */ #include #include "Employee.h" int main(int argc, char* argv[]) { Employee e1 = new_Employee("Alan Turing", 123); Employee_print(e1); printf("\n"); }