Special member function => Constructor No parameter constructor => Default Constructor
| 8 | //Special member function => Constructor |
| 9 | //No parameter constructor => Default Constructor |
| 10 | book() { |
| 11 | pages = 103; |
| 12 | ISSN = 4; |
| 13 | } |
| 14 | |
| 15 | //Parameterised Constructor |
| 16 | book(int page, int issn) { |
nothing calls this directly
no outgoing calls
no test coverage detected