7 lines
80 B
C
7 lines
80 B
C
struct List {
|
|
int data;
|
|
List *next;
|
|
};
|
|
|
|
List *insert(List *head, int data);
|