Posts by luisff • 23 points
1 post
-
2
votes3
answers582
viewsQ: How to dynamically increase struct size?
How to increase the size of 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…