MCPcopy Create free account
hub / github.com/Rustam-Z/cpp-programming / Account

Method Account

Lab_11/Source.cpp:80–86  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

78{
79public:
80 Account()
81 {
82 cout << "Object is being Created" << endl;
83 name = "Rustam";
84 number = "123456789";
85 balance = 12345;
86 }
87 ~Account()
88 {
89 cout << "Object is being Deleted" << endl;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected