Ho solo avuto un dubbio nella mia mente. La seguente subroutine (per cercare un elemento, in un elenco, ad esempio) ha un'istruzione return alla fine:
list *search_list(list *l, item_type x) {
if (l == NULL) return(NULL);
if (l->item ==...
posta
17.06.2013 - 07:13