struct element *leaf = (struct element*)malloc(sizeof(struct element)); leaf->i = 100; leaf->next = NULL; insert(&head,leaf);
struct element *leaf = (struct element*)malloc(sizeof(struct element)); leaf->i = 100; leaf->next = NULL; insert(&head,leaf);