Reference your Assignment #2. I am going to add the follow…
Reference your Assignment #2. I am going to add the following private items to the Student Class. string street_addressstring city;string state;string zip; Write the complete implementation for each of the following mutator and accessor functions that would go into the student.cpp file: void Setstreet_address(const string s);void Setcity(const string s); void Setstate(const string s);void Setzip(const string s); string Getstreet_address(); string Getcity();string Getstate(); string Getzip();