6 lines
65 B
C++
6 lines
65 B
C++
while (a)
|
|
{
|
|
link<int>* tmp = a;
|
|
a = a->next;
|
|
delete tmp;
|
|
}
|