How can I increase the size of the struct
when the current size is reached?
#define TAM_MAX 50;
typedef struct{
char nome[TAM_NOME]; /* nao pode ser vazio*/
char sobrenome[TAM_SOBRENOME];
char telefone[3][TAM_FONE]; /* modelo: '+99 (99) 9 9999 9999' */
char email[3][TAM_EMAIL]; /* 'modelo: a-z . _ 0-9 @ a-z . a-z . a-z' */
} TCONTATO;
TCONTATO agenda[TAM_MAX];