5 lines
50 B
C
5 lines
50 B
C
|
|
struct link {
|
||
|
|
struct link *next;
|
||
|
|
int data;
|
||
|
|
};
|