Example #1
0
int main() {
	Link* h = new Link;
	h->next = h;

	h->Create(10);
	h->Print();
	h->Cleanup(h);
	return 0;
}