00 01 02 03 04 05 06 07 08
void push(char value, struct Node *tail){ struct Node *temp; temp=initLLNode(val); temp->next=tail; tail->next->next=temp; tail->next=temp; return; }