elsinor
Home
From Flickr!
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
Post più recente
Post più vecchio
Home page
Iscriviti a:
Commenti sul post (Atom)
Nessun commento:
Posta un commento