Lista de tarefas e telefones para uma pessoa
typedef struct _node_tarefa{ | |
struct _node_tarefa *next; | |
Tarefa data; | |
} NodeTarefa; | |
typedef struct { | |
NodeTarefa *head; | |
} Tarefas; | |
typedef struct _node_telefone{ | |
struct _node_telefone *next; | |
Telefone data; | |
} NodeTelefone; | |
typedef struct { | |
NodeTelefone *head; | |
} Telefones; | |
typedef struct { | |
char nome[80]; | |
Tarefas tarefas; | |
Telefones telefones; | |
} Pessoa; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment