Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~143 People Reached
Favorite Forums
Favorite Tags
c++ x 2
Member Avatar for dudman

[CODE]#ifndef _EMPLOYEE_H #define _EMPLOYEE_H #define _ProductionWorker_h #pragma warning(disable: 4996) #include <cstring> #include <iostream> #include <cstdlib> using namespace std; //const int SIZE = 40; // Array Size class Employee //Definition of Employee Class { private: //char employName[SIZE]; char *employName; int employNum; int hireDate; public: Employee(); //Constructor Employee(char *e) {employName = new …

Member Avatar for dudman
0
143