struct NodeT { dtatype data; NodeT * next; };
NodeT * tmp; tmp = new NodeT;
tmp->data = 7; tmp->next = nullptr;