Posts by user57116 • 63 points
1 post
-
6
votes1
answer214
viewsQ: Error while printing static list
How do I print my static list? #include <stdio.h> #include <stdlib.h> #define MAX 3 struct alunos { int matricula; char nome[30]; float nota1, nota2; }; typedef struct lista { int quant;…