Skip to content

Instantly share code, notes, and snippets.

#include <stdio.h>
#include <stdlib.h>
typedef struct node {
int key;
struct node *next;
} node_t;
// Initialize first element of the list