What is mean by Loopy Linked Lists?

Answer:

for example:

Element a, b, c;
a.next = &b;
b.next = &c;
c.next = &a;

First answer by NevemTeve. Last edit by NevemTeve. Contributor trust: 172 Question popularity: 1 [recommend question].