Advertisement
Elezerb

Untitled

Feb 18th, 2020
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.24 KB | None | 0 0
  1. #define LUNGHEZZA 30
  2.  
  3. typedef struct {
  4.   char nome_sitoweb[LUNGHEZZA];
  5.   int anno;
  6.   int mese;
  7.   int giorno;
  8. } Sito;
  9.  
  10. typedef struct nodo {
  11.   Sito dato;
  12.   struct nodo* next;
  13. } Nodo;
  14.  
  15. typedef Nodo* Lista;
  16.  
  17. void nuovaLista(Lista* l);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement