Answer:
struct Node{
int data;
struct Node *next;
};
Step-by-step explanation:
Linked list is the data structure which is used to store the series data but not in continuous memory location .
Linked list contain node which store the data and pointer which store the address of next node. If their is no next node, then it store the NULL.
so, the structure must declare the data and a pointer variable.