c list

C
// Node of the list
typedef struct node {
    int val;
    struct node * next;
} node_t;

Source

Also in C: