struct Employee
{
const char* name;
double salary;
const char* office;
Employee(const char* nm, double sal, const char* ofc)
{
name = name;
salary = sal;
office = ofc;
}
};
Philp = new Employee("Phil", 80000, "232D");