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