Hi can someone explain me this function
The bolded code this what I need to understand. how the insertion is made.Code:struct Node{ char name[39]; sruct Node *next Ptr;} typedef struct Node Node; void insert(Node** firstHndl,char s[]) {Node*prt malloc(sizeof(char(Node)); strcpy(ptr->name,s); ptr->nextPtr=*firstHndl; *firstHndl=ptr;}
Thank you
B.



LinkBack URL
About LinkBacks


