MCPcopy Create free account
hub / github.com/codemistic/Data-Structures-and-Algorithms / book

Method book

CPP/class of book.cpp:10–13  ·  view source on GitHub ↗

Special member function => Constructor No parameter constructor => Default Constructor

Source from the content-addressed store, hash-verified

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) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected