giovedì 18 giugno 2015

Print Linked List

void print_list (struct list *h)
{
    if (h != NULL)    {
        printf("%d ->", h->value);
        print_list(h->next);
    }  else
    printf("NULL\n");
}

Nessun commento:

Posta un commento