NEED HELP with my project

I have a project that ask me to create a system tracks the employee's tracking in a company. It maintains employee information. Each employee has the following information:

employee name, job, number, job title, years of experience, monthly working days, salary and vacation days.

there are two table given about the above information I just need help how to start the program please.
Hi All,
at first lets make a link list class, that have the flowing members:
1
2
3
4
5
6
7
8
string name;
string job;
int number;
string job_title;
double precedent;
int days;
double salary;
int vacation;


those are members of class that should have, and the basics of link list class(pointer , functions , etc)
Topic archived. No new replies allowed.