MCPcopy Create free account
hub / github.com/Lakhankumawat/LearnCPP / learncpp

Method learncpp

O-OOPS/ConstructorDestructor.cpp:14–17  ·  view source on GitHub ↗

default constructor

Source from the content-addressed store, hash-verified

12public:
13 // default constructor
14 learncpp()
15 {
16 cout << "Default constructor called ! -------------------------" << endl << endl;
17 };
18
19 // Parameterized constructor
20 learncpp(int a, int b, char *ch)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected