Please help me with simple program

any one will ocde this program for your practise or help.

Create a class CEmployee. The class contains the attributes of type int, character and character array. The class contains the following methods. Default constructor Parameterized constructor Destructor Getters Setters

Declare an array of employee in main and pass it as parameter to global functions to: ·

Count the number of employees with the required designation. int designationCount(CEmployee [], char []); ·


Count the number of employees with gender male or female int genderCount(CEmployee [], char []); ·

Search an employee by fName and lName. int empFNameSearch(CEmployee [], char []); int empLNameSearch(CEmployee [], char []);
closed account (o3hC5Di1)
Hi there,

This seems very much like a homework assignment. Per the forum's rules, we don't make homework for you. The assignment is relatively clear on what it expects, so perhaps if you could be a little bit clearer on what you are struggling with we could help you get started.

To not leave you empty handed, here are links to information you will need to complete this assignment:

http://www.cplusplus.com/doc/tutorial/classes/
http://www.cplusplus.com/doc/tutorial/functions/
http://www.cplusplus.com/doc/tutorial/functions2/
http://www.cplusplus.com/doc/tutorial/arrays/
http://www.cplusplus.com/doc/tutorial/ntcs/

All the best,
NwN
Topic archived. No new replies allowed.