6 lines
43 B
C++
6 lines
43 B
C++
|
|
struct link
|
||
|
|
{
|
||
|
|
link* next;
|
||
|
|
int data;
|
||
|
|
};
|