hi, i was wondering if someone could tell me what it means to use a 'struct' as its fields?

typedef struct Node {
struct Node * pre;
struct Node * next;
void *...