#include #include "LinkList.h" using namespace std; int main() { bookList books = new bookNode; books->next = NULL; create(books); cout << getLength(&books) << endl; display(&books); return 0; }