5 lines
62 B
C
5 lines
62 B
C
typedef struct Node {
|
|
struct Node *next;
|
|
int value;
|
|
} Node;
|
typedef struct Node {
|
|
struct Node *next;
|
|
int value;
|
|
} Node;
|