Method code External: class List { private: Node *head; public: List(); } List::List() { head = NULL; }