1 post
1
112
I’m trying to use vectors and struct, but it’s not working. #include <stdio.h> #include <stdlib.h> typedef struct Atleta { float notas[5]; } atleta; void receberNotas(atleta* l) { int i;…