I just made a struct that stored all the information about an employee together in one unit. Now I have to take all that information and put it in an array of structures called employees.
This is my struct:
struct EmployeeT
{
    char name[MAXSIZE];
    char title;
    double gross;
    double tax;
    double net;
};
Now how do I put that information into an array?
Thanks again guys
 
     
     
     
     
    