#include <stdio.h> #include <string.h>
int main() {
int notas[5];
int chute;
notas[0] = 1;
notas[1] = 4;
notas[2] = 7;
notas[3] = 5;
notas[4] = 10;
for (int i = 0; i < 5; i++)
{
printf(" As notas sao: %d \n", notas[i]);
}
}
Eu tentei usar o strlen, mas acabou que não funcionou, então eu troquei por 5 e foi
for (int i = 0; i < strlen(notas); i++) { printf("As notas sao: %d ", notas[i]); }
esse foi o que deu errado, apenas troquei o strlen(notas) por 5 e foi