#include #include "class4header.h" using namespace std; int main() { linkedListclass *first; first= new linkedListclass(23); cout << "The value is " << first->getdvalue() << endl; first->addbehind(45); first->printlist(); first->addbehind(100); first->printlist(); return 0; }