estrutura de dados para armazenar tarefas e telefones
#include <time.h> | |
#include <stdbool.h> | |
typedef struct { | |
char descicao[255]; | |
bool pendente; | |
} Tarefa; | |
#define TEL_FIXO 0x00 | |
#define TEL_CELULAR 0x01 | |
typedef struct { | |
char tipo; | |
char ddd[3]; | |
char numero[10]; | |
} Telefone; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment