Status list_print(LinkedList head){ if(head==NULL){ return ERROR; } LinkedList p=head->next; while(p!=NULL){ printf("%d",p->data); p=p->next; } }
Status list_print(LinkedList head){ if(head==NULL){ return ERROR; } LinkedList p=head->next; while(p!=NULL){ printf("%d",p->data); p=p->next; } }