Advertisement
Guest User

Untitled

a guest
Aug 21st, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. typedef struct{
  2. char nome[30];
  3. char posicao[30];
  4. int nrCamisa;
  5. }JOGADOR;
  6.  
  7. typedef struct{
  8. JOGADOR vetor[MAX];
  9. int NroElem;
  10. }ELENCO;
  11.  
  12. typedef struct{
  13. char nome[30];
  14. char posicao[30];
  15. int nrCamisa;
  16. }JOGADOR;
  17.  
  18. typedef struct no{
  19. JOGADOR info;
  20. struct no* prox;
  21. }ELENCO;
  22.  
  23. typedef int Inteiro
  24.  
  25. struct exemplo {
  26. int x;
  27. }
  28.  
  29. typedef struct exemplo Exemplo;
  30.  
  31. typedef struct exemplo {
  32. int x;
  33. } Exemplo;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement