Code:
// one of them
struct employee {
  char name[10];
  // anything else you want to save
};

// many of them
struct employee employees[100];
> The user says how many are the employees of the company
Code:
struct employee *employees = malloc( howmany * sizeof(*employees));
In either case, you start with
employees[0].name