Posts by RENAN NUNES AVILA • 1 point
1 post
-
-1
votes1
answer30
viewsQ: Could someone help me see where I’m wrong in my queue allocation
#include <stdio.h> #include <stdlib.h> typedef struct _fila { int ini; int fim; int tam; int *vetor; } Fila; Fila* criar_fila (int tamanho) { Fila* fila = (Fila *) malloc…
casked RENAN NUNES AVILA 1