How can I implement a struct containing an ID, a priority (medium, low, high, urgent) and a telephone?
basically:
typedef struct Atividades{
int id;
int telefone
char prioridade[20];
}
I would have to write this in a list by arrangement, list by arrangement I just learned using vector, would anyone know how to implement using struct?