#include "listhead.h" void main() { List_Head L; for(int i=1; i<=10; i++) { List_Item * n = new List_Item; n->val = i; L.insert(n); } L.printout(); }