Posts by elder • 21 points
1 post
-
2
votes2
answers306
viewsQ: Doubt in Struct + Pointer in C
Considering the code below, I wonder why the second printf of the Lealuno procedure does not print correctly? #define MAX 3 typedef struct aluno{ int matricula; float notas[2]; } Aluno ; int t=1;…