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
Ranked #107.55K
1 Posted Topic
Re: #include<iostream> #include<string> using namespace std; class Employee { string name_of_employee; int salary_of_employee; public: Employee(); // constructor void set_name(string); string get_name(); void set_salary(int); int get_salary(); void show_employee(string,int); int modify_salary(int,int); }; Employee::Employee() { name_of_employee = ""; salary_of_employee = 0; } void Employee::set_name(string name) { name_of_employee = name; } string Employee::get_name() { return … |
The End.