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
Ranked #107.55K
~529 People Reached
Favorite Forums
Favorite Tags
c++ x 1

1 Posted Topic

Member Avatar for atn016

#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 …

Member Avatar for Muhammad Usama_2
0
529

The End.