Buat simpul di C

typedef struct node
{
    int number;
    struct node *next;
}
node;
Handsome Hedgehog