hellopret

 avatar
unknown
plain_text
2 years ago
247 B
1
Indexable
    createNodeList(n);
    printf("\n dataentered inthe list :\n");
    displayList();
}
void createNodeList(int n)
{
    struct node *fnNode,*tmp;
    int num,i;
    stnode = (struct node *)malloc(sizeof(struct node));
    
    if(stnode == NULL)
Editor is loading...