15 lines
258 B
C++
15 lines
258 B
C++
//test1.cpp
|
|
#include <iostream>
|
|
#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;
|
|
}
|