Files
aisd/Lab2/list/list.h
T

7 lines
80 B
C

struct List {
int data;
List *next;
};
List *insert(List *head, int data);