#include #include "contact.h" using std::cin; using std::cout; using std::endl; void contact::Set_firstName(char firstName) { *_firstName = firstName; } char* contact::Get_firstName() { return _firstName; } void contact::print() { /*cout << "name: " << _name << endl; cout << "age: " << _age << endl;*/ }