Postando aqui a resposta do exercício proposto
#include <stdio.h>
#include <stdlib.h>
#include <locale.h>
#include <string.h>
int main(int argc, char const *argv[])
{
char notas[5];
notas[0] = 1;
notas[1] = 4;
notas[2] = 7;
notas[3] = 5;
notas[4] = 10;
notas[5] = '\0';
for (int i = 0; i < strlen(notas); ++i)
{
printf ("nota %d = %d\n", i, notas[i]);
}
system("pause");
return 0;
}