Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. typedef int TipoL;
  2.  
  3. typedef struct ListaNo
  4. {
  5. TipoL info;
  6. struct ListaNo *prox;
  7. } * pListaNo;
  8.  
  9. typedef struct TLista
  10. {
  11. pListaNo primeiro, ultimo, iterador;
  12. int longitude;
  13. } * Lista;
  14.  
  15. int main()
  16. {
  17.  
  18. return 0;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement