// test_Listp.cpp #include using namespace std; #include "List1.h" int main() { List *b; // constructor is not called here b = new List(20); // constructor is called here delete b; // destructor is called here }