| 11 | bool male; |
| 12 | public: |
| 13 | Student() |
| 14 | { |
| 15 | name = new char[1024]{0}; |
| 16 | born = 0; |
| 17 | male = false; |
| 18 | cout << "Constructor: Person()" << endl; |
| 19 | } |
| 20 | Student(const char * initName, int initBorn, bool isMale) |
| 21 | { |
| 22 | name = new char[1024]; |
nothing calls this directly
no outgoing calls
no test coverage detected