#include <stdio.h> int main () {
int notas[5]; notas[0] = 1; notas[1] = 4; notas[2] = 7; notas[3] = 5; notas[4] = 10; for (int i = 0; i < 5 ; i++) { printf("%d \n", notas[i]); }
#include <stdio.h> int main () {
int notas[5]; notas[0] = 1; notas[1] = 4; notas[2] = 7; notas[3] = 5; notas[4] = 10; for (int i = 0; i < 5 ; i++) { printf("%d \n", notas[i]); }
Olá!
Muito obrigada por compartilhar sua sugestão de solução!
Uma outra forma de inicializar um array seria fazer:
int notas[] = {1, 4, 7, 5, 10}
É uma forma bem legal de já deixar tudo preenchido! Qualquer dúvida ou sugestão, fique à vontade para enviar aqui no fórum! :)