fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4.  
  5. typedef struct Time{
  6. char name[30];
  7. int pnts;
  8. int vit, emp, der;
  9. int gf, gt;
  10. struct Time *next;
  11. struct Time *prev;
  12. } time;
  13.  
  14. typedef struct campeonato { time *first; } campeonato;
  15.  
  16. void addTime(campeonato *c, char name[]) {
  17. time *t = malloc(sizeof(time));
  18. strcpy(t->name, name);
  19. t->next = NULL;
  20. t->pnts = t->vit = t->emp = t->der = t->gt = t->gf = 0;
  21. if (c->first == NULL) {
  22. c->first = t;
  23. t->prev = NULL;
  24. } else {
  25. time *p = c->first;
  26. while (p->next != NULL) p = p->next;
  27. p->next = t;
  28. t->prev = p;
  29. }
  30. }
  31.  
  32. int main(void) {
  33. campeonato c = { .first = NULL };
  34. addTime(&c, "Santos");
  35. time *t = c.first;
  36. printf("%s", t->name);
  37. }
  38.  
  39. //https://pt.stackoverflow.com/q/162373/101
Success #stdin #stdout 0s 4560KB
stdin
Standard input is empty
stdout
Santos