I'm try to make an payroll program in c++. In the beginning of my program I have to define a struct called EmployeeT that will store all the information about an employee together in one unit.
Then I have to take all that information and put it in an array of EmployeeT structures called employees.
I have this so far...
typedef struct
{
char name[];
char title;
double gross;
double tax;
double net;
} EmployeeT;
So, What am I miss or doing wrong?
Thanks guys
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…