#include <stdio.h>

struct node{
    int data;
    struct node *link;
};

int main() {
    printf("Linked List!\n");
    create_numberof_nodes_seq(6);
    
    return 0;
}

void create_numberof_nodes_seq(int num)
{
    struct node *head = (struct node*) malloc(sizeof(node));
    head->data = 10;
    head->key = 0;
    for(int i=1;i<6;i++){
        
    }
}

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: