Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

dll node cration

struct node;
{
  struct node* prev;
  int data;
  struct node* next;
};
int main()
{
  struct node *head=malloc(sizeof(struct node));
  head->prev=NULL;
  head->data=15;
  head->next=NULL:
}
 
PREVIOUS NEXT
Tagged: #dll #node #cration
ADD COMMENT
Topic
Name
4+2 =