Lista de tarefas e telefones para uma pessoa
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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