Advertisement
Guest User

Untitled

a guest
May 24th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.16 KB | None | 0 0
  1. void stampaListaRic( lista lista1 ){
  2.     if( lista1 != NULL ){
  3.         printf("%d\n", lista1->info );
  4.         stampaListaRic( lista1->next );
  5.     }
  6.     else
  7.         printf("//");
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement