I recently started learning object oriented programming..for the following code, I am getting the linker error !!
#include <iostream>
#include <string>
#include <cstdlib>
using namespace std;
class person{
    public:
        string name;
        person();
        person(string n){
            name = n ;
        }
        void setName(string k){
            name = k;
        }
        string getName(){
            return name;
        }
};
class student : public  person {
    public:
        string major;
        void setMajor(string m){
            major = m;
        }
        string getMajor(){
            return major;
        }
};
class faculty : public person{
    public:
        string department;
        faculty(string dept){
            department = dept;
        }
        void setDepartment(string depart){
            department = depart;
        }
        string getDepartment(){
            return department;
        }
};
int main() {
    student s;
    s.setName("james");
    s.setMajor("computer science");
    string p = s.getName();
    string p2 = s.getMajor();
    cout << "student name and mjor is :" << p << p2 << endl;
    faculty f("nanotech");
    f.setName("chris");
    f.setDepartment("electrical");
    string f1 = f.getName();
    string f2 = f.getDepartment();
    cout << "facult name and department :" << f1 << f2 << endl;
    return 0;
}
The following error i am getting , when i try to compile the code.
/tmp/ccYHu2de.o: In function `faculty::faculty(std::string)':
person.cpp:(.text._ZN7facultyC2ESs[_ZN7facultyC5ESs]+0x19): undefined reference to `person::person()'
/tmp/ccYHu2de.o: In function `student::student()':
person.cpp:(.text._ZN7studentC2Ev[_ZN7studentC5Ev]+0x15): undefined reference to `person::person()'
collect2: error: ld returned 1 exit status
 
     
    