#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#define SIZE 5
int main(void)
{
int scores[SIZE] = { 31, 63, 62, 87, 14 };
int i;
for (i = 0; i < SIZE; i++)
printf("scores[%d] = %d\n", i, scores[i]);
return 0;
}