// Project LinkedList // File main1.cpp // Create hardcoded linked list // without header and trailer nodes. #include using namespace std; #include "Node.h" int main() { Node *head; head = new Node(35); head -> set_next(new Node(75)); head -> get_next() -> set_next(new Node(91)); head -> get_next() -> get_next() -> set_next(new Node(68)); cout << head -> get_item() << " "; cout << head -> get_next() -> get_item() << " "; cout << head -> get_next() -> get_next() -> get_item() << " "; cout << head -> get_next() -> get_next() -> get_next() -> get_item() << endl; return EXIT_SUCCESS; }