Answer:
Following are the program in c language
#include <stdio.h> // header file
int main() // main function
{
int runTimes[5]={800,775,790,805,808}; // declared the array
for (int k = 0; k < 3; k++) // itearting the loop
{
printf("\n%d",runTimes[k]); // display array
}
return 0;
}
Output:
800
775
790
Explanation:
Following are the description of program